/* ── Premium badge on cards ───────────────────────────────────── */

.badge-premium {
	color: #92710a !important;
	font-size: 11px;
	line-height: 16px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 4px 8px;
}

.badge-premium::before {
	background-color: #fdf0d0 !important;
}

.badge-premium .badge-text {
	position: relative;
	z-index: 2;
}

/* ── Premium badge in article hero ────────────────────────────── */

.article-hero-title .badge-premium {
	color: #92710a !important;
}

.article-hero-title .badge-premium::before {
	background-color: #fdf0d0 !important;
}

/* ── Content preview with fade ────────────────────────────────── */

.premium-content-preview {
	position: relative;
	max-height: none;
	overflow: hidden;
}

.premium-paywall {
	position: relative;
	margin-top: -80px;
	padding-top: 0;
}

.premium-paywall__fade {
	height: 120px;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.8) 40%,
		rgba(255, 255, 255, 1) 100%
	);
	position: relative;
	z-index: 1;
}

.premium-paywall__cta {
	position: relative;
	z-index: 2;
	background: #fff;
	text-align: center;
	padding: 40px 24px 48px;
	border-top: 1px solid #e8e8e8;
}

.premium-paywall__icon {
	margin-bottom: 16px;
}

.premium-paywall__title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px;
	line-height: 1.3;
}

.premium-paywall__text {
	font-size: 15px;
	color: #666;
	margin: 0 0 24px;
	line-height: 1.6;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.premium-paywall__button {
	display: inline-block;
	padding: 12px 32px;
	background: #FF6719;
	color: #fff !important;
	font-weight: 600;
	font-size: 15px;
	border-radius: 4px;
	text-decoration: none !important;
	transition: background 0.15s ease;
	letter-spacing: 0.2px;
}

.premium-paywall__button:hover {
	background: #e55a10;
	color: #fff !important;
	text-decoration: none !important;
}

/* ── Dark mode support ────────────────────────────────────────── */

@media (prefers-color-scheme: dark) {
	.premium-paywall__fade {
		background: linear-gradient(
			to bottom,
			rgba(18, 18, 18, 0) 0%,
			rgba(18, 18, 18, 0.8) 40%,
			rgba(18, 18, 18, 1) 100%
		);
	}

	.premium-paywall__cta {
		background: #121212;
		border-top-color: #333;
	}

	.premium-paywall__title {
		color: #eee;
	}

	.premium-paywall__text {
		color: #999;
	}
}
