/* Spotify CTA — Erdemli / Grup Orion */
.spotify-cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
	margin: 0 0 1.5rem;
	max-width: 52rem;
}

.spotify-cta__btn {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.95rem 1.15rem;
	border-radius: 14px;
	text-decoration: none !important;
	color: #f4f7f5 !important;
	background:
		radial-gradient(120% 140% at 0% 0%, rgba(29, 185, 84, 0.35) 0%, transparent 55%),
		linear-gradient(145deg, #121a16 0%, #0a0f0c 55%, #101612 100%);
	border: 1px solid rgba(29, 185, 84, 0.45);
	box-shadow:
		0 10px 28px rgba(8, 16, 12, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.spotify-cta__btn--alt {
	background:
		radial-gradient(120% 140% at 0% 0%, rgba(0, 153, 0, 0.28) 0%, transparent 55%),
		linear-gradient(145deg, #141816 0%, #0b0e0c 55%, #121512 100%);
	border-color: rgba(0, 153, 0, 0.4);
}

.spotify-cta__btn:hover,
.spotify-cta__btn:focus {
	transform: translateY(-2px);
	border-color: rgba(29, 185, 84, 0.85);
	box-shadow:
		0 14px 34px rgba(8, 16, 12, 0.35),
		0 0 0 1px rgba(29, 185, 84, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	outline: none;
}

.spotify-cta__icon {
	flex: 0 0 auto;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1db954;
	color: #0a0f0c;
	font-size: 1.35rem;
	box-shadow: 0 6px 16px rgba(29, 185, 84, 0.35);
}

.spotify-cta__btn--alt .spotify-cta__icon {
	background: #009900;
	box-shadow: 0 6px 16px rgba(0, 153, 0, 0.3);
}

.spotify-cta__copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.25;
}

.spotify-cta__label {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(29, 185, 84, 0.95);
	font-weight: 600;
}

.spotify-cta__btn--alt .spotify-cta__label {
	color: rgba(140, 220, 140, 0.95);
}

.spotify-cta__name {
	font-family: "Roboto Slab", serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin-top: 0.15rem;
}

.spotify-cta__hint {
	font-size: 0.82rem;
	color: rgba(230, 240, 234, 0.78);
	margin-top: 0.2rem;
}

@media screen and (max-width: 736px) {
	.spotify-cta {
		grid-template-columns: 1fr;
	}
}
