.featured-beats {
	padding: 70px 0 40px;
	background: #0b0b0b;
	border-top: 1px solid #2a2a2a;
	color: #f5f5f5;
	font-family: 'Inter', sans-serif;
}

.featured-beats .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.featured-beats .section-title {
	margin: 0 0 0.5rem;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.featured-beats .section-sub {
	margin: 0 0 2.5rem;
	color: #b0b0b0;
	font-size: 1.1rem;
}

.beat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
	margin: 2rem 0 1rem;
}

.beat-card {
	position: relative;
	overflow: hidden;
	background: #181818;
	border: 1px solid #2a2a2a;
	border-radius: 10px;
	cursor: default;
	transition: 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.beat-card:hover {
	border-color: #a855f7;
	box-shadow: 0 20px 30px rgba(168, 85, 247, 0.15);
	transform: translateY(-6px);
}

.beat-art {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #1c1c1c;
}

.beat-art img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.beat-art .featured-play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	background: rgba(168, 85, 247, 0.9);
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
	color: #fff;
	font-size: 1.2rem;
	opacity: 0;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.beat-card:hover .featured-play,
.featured-play.is-playing,
.featured-play:focus-visible { opacity: 1; }

.beat-info { padding: 14px 16px 16px; }

.beat-info h4 {
	margin: 0 0 3px;
	font-size: 1rem;
	font-weight: 600;
}

.beat-meta {
	display: flex;
	justify-content: space-between;
	gap: 4px;
	margin: 4px 0 8px;
	color: #777;
	font-size: 0.75rem;
	flex-wrap: wrap;
}

.beat-meta span {
	padding: 0 8px;
	background: #1e1e1e;
	border-radius: 4px;
}

.beat-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 8px;
}

.beat-price {
	color: #a855f7;
	font-weight: 700;
}

.featured-beats .btn-license {
	padding: 0.2rem 1rem;
	background: #a855f7;
	border: 0;
	border-radius: 20px;
	color: #0b0b0b;
	font-family: 'Inter', sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.featured-beats .btn-license:hover,
.featured-beats .btn-license:focus-visible {
	background: #c084fc;
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.featured-beats .section-title { font-size: 2rem; }
	.beat-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 480px) {
	.beat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.beat-info { padding: 10px 10px 12px; }
	.beat-info h4 { font-size: 0.85rem; }
	.beat-meta { font-size: 0.65rem; }
	.beat-meta span { padding: 0 5px; }
	.featured-beats .btn-license { padding: 0.15rem 0.7rem; font-size: 0.6rem; }
}
