/* ===================== Daily Horoscope — Full Page ===================== */
.dh-page { background: #f4f4f8; }

.dh-page__hero {
	background: linear-gradient(135deg, #120b22 0%, #2a1850 45%, #6d28d9 130%);
	color: #fff;
	padding: 56px 20px 64px;
	text-align: center;
	/* Break out of the theme's centered .sbn-container (opened in header.php)
	   so the hero spans the full viewport width regardless of page layout. */
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.dh-page__hero-inner { max-width: 720px; margin: 0 auto; }
.dh-page__hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.dh-page__title {
	margin: 0 0 12px;
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 800;
	letter-spacing: -0.02em;
}
.dh-page__subtitle {
	margin: 0;
	font-size: 16px;
	color: rgba(255,255,255,.78);
	line-height: 1.6;
}
.dh-page__date {
	margin: 16px 0 0;
	font-size: 13px;
	color: rgba(255,255,255,.65);
}

.dh-page__container {
	max-width: 1180px;
	margin: -32px auto 60px;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

/* The shortcode's own .dh-app card already has shadows/radius; just give it
   a touch more lift since it now sits on the page's plain background. */
.dh-page__container .dh-app {
	box-shadow: 0 16px 40px rgba(20, 10, 50, .08);
}

@media (max-width: 768px) {
	.dh-page__hero { padding: 44px 16px 56px; }
	.dh-page__container { margin-top: -26px; padding: 0 12px; }
}
