/* =====================================================================
   YojanaPro Premium 6.0 — Premium feature stylesheet.
   Adds dark mode, sticky header, reading progress, back-to-top, share
   bar, related posts, author bio, mega menu, ad slots and typography
   runtime variables on top of the base style.css.
   ===================================================================== */

:root {
	--yojana-heading-font: 'Inter', system-ui, sans-serif;
	--yojana-base-font-size: 16px;
	--yojana-surface: #ffffff;
	--yojana-surface-2: #f9fafb;
	--yojana-muted: #64748b;
	--yojana-shadow-sm: 0 1px 2px rgba(15, 33, 103, .06);
	--yojana-shadow-lg: 0 18px 50px rgba(15, 33, 103, .14);
	--yojana-ring: 0 0 0 3px rgba(255, 107, 0, .25);
}

/* ---- Typography runtime ---- */
html { font-size: var(--yojana-base-font-size); }
h1, h2, h3, h4, h5, h6,
.brand-title, .featured-card-title, .scheme-title,
.single-title, .yojana-related-title, .yojana-author-name,
.widget-title, .yojana-share-label {
	font-family: var(--yojana-heading-font);
}

/* ===================================================================
   Sticky header
   =================================================================== */
.has-sticky-header .site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--yojana-surface);
	box-shadow: var(--yojana-shadow-sm);
	transition: box-shadow .25s ease, background .25s ease;
}
.has-sticky-header .site-header.is-pinned {
	box-shadow: 0 10px 30px rgba(15, 33, 103, .12);
}
.dark-mode-ready.has-sticky-header .site-header.is-pinned {
	box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

/* leave room for sticky bar so nothing jumps */
.has-sticky-header.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .has-sticky-header.admin-bar .site-header { top: 46px; } }

/* ===================================================================
   Reading progress bar
   =================================================================== */
.yojana-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 4px;
	width: 0;
	z-index: 9999;
	background: linear-gradient(90deg, var(--yojana-primary), var(--yojana-accent));
	box-shadow: 0 0 12px rgba(255, 107, 0, .5);
	transition: width .1s linear;
}
body:not(.single-post):not(.single-yojana) .yojana-progress { display: none; }

/* ===================================================================
   Back to top
   =================================================================== */
.yojana-totop {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: var(--yojana-primary);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--yojana-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px) scale(.85);
	transition: opacity .25s ease, transform .25s ease, background .2s ease;
	z-index: 900;
}
.yojana-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.yojana-totop:hover { background: var(--yojana-accent); }
.yojana-totop:focus-visible { outline: none; box-shadow: var(--yojana-ring); }

/* ===================================================================
   Dark mode
   =================================================================== */
html.yojana-dark,
html.yojana-dark body {
	background: #0b1226;
	color: #e8edf5;
}
html.yojana-dark {
	--yojana-surface: #131c35;
	--yojana-surface-2: #0f1729;
	--yojana-border: #243154;
	--yojana-bg-light: #0f1729;
	--yojana-bg-lighter: #0b1226;
	--yojana-muted: #9aa6c0;
	--yojana-shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
	--yojana-shadow-lg: 0 18px 50px rgba(0, 0, 0, .55);
}
html.yojana-dark .site-header,
html.yojana-dark .topbar { background: #0e1530; color: #dbe3f5; }
html.yojana-dark a { color: #9ec5ff; }
html.yojana-dark .nav-primary a { color: #e8edf5; }
html.yojana-dark .featured-card,
html.yojana-dark .scheme-item,
html.yojana-dark .sidebar .widget,
html.yojana-dark .yojana-related,
html.yojana-dark .yojana-author,
html.yojana-dark .comment-card {
	background: var(--yojana-surface);
	border-color: var(--yojana-border);
	color: #e8edf5;
}
html.yojana-dark .featured-card-title a,
html.yojana-dark .scheme-title a,
html.yojana-dark .yojana-related-card-title { color: #f4f8ff; }
html.yojana-dark .search-hero { background: linear-gradient(180deg, #0b1226, #0f2167); color: #e8edf5; }
html.yojana-dark .search-bar input,
html.yojana-dark input,
html.yojana-dark textarea,
html.yojana-dark select {
	background: #0e1530;
	border-color: var(--yojana-border);
	color: #e8edf5;
}
html.yojana-dark .site-footer { background: #0a1124; color: #c4cee6; }

/* Dark toggle button */
.dark-toggle {
	border: 1px solid var(--yojana-border);
	background: transparent;
	color: var(--yojana-ink);
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 19px;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.dark-toggle:hover { background: var(--yojana-accent); color: #fff; transform: translateY(-1px); }
.dark-toggle:focus-visible { outline: none; box-shadow: var(--yojana-ring); }
.dark-toggle .dt-sun { display: none; }
.dark-toggle .dt-moon { display: inline; }
.yojana-dark .dark-toggle .dt-sun { display: inline; }
.yojana-dark .dark-toggle .dt-moon { display: none; }

/* ===================================================================
   Share bar
   =================================================================== */
.yojana-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 18px 0;
	margin: 22px 0;
	border-top: 1px solid var(--yojana-border);
	border-bottom: 1px solid var(--yojana-border);
}
.yojana-share-label { font-weight: 700; color: var(--yojana-ink); margin-right: 4px; }
.yojana-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 99px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid var(--yojana-border);
	background: var(--yojana-surface-2);
	color: var(--yojana-ink);
	transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.yojana-share-btn:hover { transform: translateY(-2px); border-color: var(--yojana-accent); color: #fff; background: var(--yojana-accent); }
.yojana-share-copy { cursor: pointer; }
.yojana-share-copy.copied { background: #1a7f37; border-color: #1a7f37; color: #fff; }
.yojana-dark .yojana-share-btn { background: #0e1530; color: #e8edf5; border-color: var(--yojana-border); }
.yojana-dark .yojana-share-label { color: #f4f8ff; }

/* ===================================================================
   Related posts grid
   =================================================================== */
.yojana-related { margin: 36px 0; }
.yojana-related-title {
	font-size: 22px;
	margin-bottom: 16px;
	color: var(--yojana-ink);
	padding-bottom: 10px;
	border-bottom: 3px solid var(--yojana-accent);
	display: inline-block;
}
.yojana-related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.yojana-related-card {
	display: flex;
	flex-direction: column;
	background: var(--yojana-surface);
	border: 1px solid var(--yojana-border);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	color: var(--yojana-ink);
}
.yojana-related-card:hover { transform: translateY(-4px); box-shadow: var(--yojana-shadow-lg); border-color: var(--yojana-accent); }
.yojana-related-thumb { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--yojana-primary), var(--yojana-accent)); }
.yojana-related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.yojana-related-card:hover .yojana-related-thumb img { transform: scale(1.06); }
.yojana-related-thumb-fallback { background: linear-gradient(135deg, var(--yojana-primary), var(--yojana-accent)); }
.yojana-related-content { display: flex; flex-direction: column; gap: 6px; padding: 12px 14px 16px; }
.yojana-related-card-title { font-size: 15px; line-height: 1.35; color: var(--yojana-ink); }
.yojana-related-card-meta { font-size: 12px; color: var(--yojana-muted); }
@media (max-width: 900px) { .yojana-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .yojana-related-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   Author bio box
   =================================================================== */
.yojana-author {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 22px;
	background: var(--yojana-surface-2);
	border: 1px solid var(--yojana-border);
	border-radius: var(--radius-lg);
	margin: 28px 0;
}
.yojana-author-avatar { flex: 0 0 auto; }
.yojana-author-avatar img { border-radius: 50%; border: 2px solid var(--yojana-accent); display: block; }
.yojana-author-body { flex: 1 1 auto; min-width: 0; }
.yojana-author-name { display: block; font-size: 18px; margin-bottom: 6px; color: var(--yojana-ink); }
.yojana-author-desc { font-size: 14px; color: var(--yojana-muted); line-height: 1.7; margin: 4px 0 8px; }
.yojana-author-desc p { margin: 0 0 4px; }
.yojana-author-url { font-size: 13px; color: var(--yojana-primary); text-decoration: none; word-break: break-all; }
.yojana-dark .yojana-author-url { color: #9ec5ff; }
@media (max-width: 560px) { .yojana-author { flex-direction: column; align-items: center; text-align: center; } }

/* ===================================================================
   Mega menu
   =================================================================== */
.primary-menu-list { position: relative; }
.primary-menu-list .menu-item { position: relative; }
.primary-menu-list .menu-item-has-children > a::after {
	content: '▾';
	margin-left: 5px;
	font-size: 11px;
	opacity: .7;
}
.primary-menu-list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--yojana-surface);
	border: 1px solid var(--yojana-border);
	border-radius: var(--radius);
	box-shadow: var(--yojana-shadow-lg);
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
	list-style: none;
	z-index: 60;
}
.primary-menu-list .menu-item:hover > .sub-menu,
.primary-menu-list .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}
.primary-menu-list .sub-menu li { width: 100%; }
.primary-menu-list .sub-menu a {
	display: block;
	padding: 9px 18px;
	font-size: 14px;
	white-space: nowrap;
}
.primary-menu-list .sub-menu a:hover { background: var(--yojana-surface-2); color: var(--yojana-accent); }

/* Mega panel: wide grid for top-level descendants */
.primary-menu-list .mega-menu-panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	min-width: 420px;
	max-width: 560px;
	gap: 0 24px;
	padding: 18px 22px;
}
.primary-menu-list .mega-menu-panel .sub-menu {
	position: static;
	box-shadow: none;
	border: none;
	background: transparent;
	min-width: 0;
	opacity: 1;
	visibility: visible;
	transform: none;
	padding: 0;
}
.primary-menu-list .mega-menu-panel > li {
	grid-column: span 1;
	border-bottom: 1px solid var(--yojana-border);
	padding-bottom: 4px;
}
.primary-menu-list .mega-menu-panel > li > a { font-weight: 700; color: var(--yojana-accent); padding-left: 0; }
@media (max-width: 899px) {
	.primary-menu-list .sub-menu,
	.primary-menu-list .mega-menu-panel { position: static; display: block; box-shadow: none; border: none; min-width: 0; padding: 4px 0 4px 14px; }
}

/* ===================================================================
   Ad slots
   =================================================================== */
.yojana-ad { margin: 18px auto; text-align: center; max-width: 100%; overflow: hidden; }
.yojana-ad-content { padding: 6px 0; border-top: 1px dashed var(--yojana-border); border-bottom: 1px dashed var(--yojana-border); }

/* ===================================================================
   Reading time chip
   =================================================================== */
.reading-time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 10px;
	border-radius: 99px;
	background: var(--yojana-surface-2);
	border: 1px solid var(--yojana-border);
	font-size: 12px;
	font-weight: 600;
	color: var(--yojana-muted);
}
.yojana-dark .reading-time { background: #0e1530; color: #9aa6c0; }

/* ===================================================================
   Premium search-hero polish
   =================================================================== */
.search-hero {
	background:
		radial-gradient(1200px 200px at 10% -20%, rgba(255, 107, 0, .18), transparent 60%),
		linear-gradient(180deg, var(--yojana-primary), #142a82);
	color: #fff;
}

/* ===================================================================
   Subtle entrance animations
   =================================================================== */
@media (prefers-reduced-motion: no-preference) {
	.featured-card, .scheme-item, .yojana-related-card {
		animation: yojana-pop .5s ease both;
	}
	.scheme-item:nth-child(n+5) { animation: none; }
	@keyframes yojana-pop {
		from { opacity: 0; transform: translateY(10px); }
		to { opacity: 1; transform: none; }
	}
}

/* ===================================================================
   Accessibility — focus rings
   =================================================================== */
.dark-toggle:focus-visible,
.yojana-totop:focus-visible,
.yojana-share-btn:focus-visible,
.yojana-related-card:focus-visible,
.official-link-btn:focus-visible,
.featured-card-btn:focus-visible,
.view-btn:focus-visible {
	outline: none;
	box-shadow: var(--yojana-ring);
}

/* ===================================================================
   Page templates — Full Width + Landing
   =================================================================== */
.layout-full-width,
.layout-landing {
	display: block;
}
.layout-full-width .content-area-full,
.layout-landing .content-area-landing {
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	float: none;
}
.layout-full-width .content-area-full { max-width: 1080px; }

/* Landing hero band */
.landing-hero {
	position: relative;
	color: #fff;
	padding: 80px 0 64px;
	background:
		radial-gradient(900px 240px at 90% -10%, rgba(255, 107, 0, .35), transparent 60%),
		linear-gradient(160deg, var(--yojana-primary), #142a82);
	overflow: hidden;
}
.landing-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: .18;
}
.landing-hero-inner {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
.landing-hero-title {
	font-size: clamp(30px, 5vw, 52px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
}
.landing-hero-sub {
	font-size: clamp(16px, 2.2vw, 20px);
	opacity: .92;
	margin: 0 auto 26px;
	max-width: 620px;
	line-height: 1.6;
}
.landing-cta {
	font-size: 16px;
	padding: 13px 28px;
	border-radius: 99px;
}
.yojana-dark .landing-hero {
	background:
		radial-gradient(900px 240px at 90% -10%, rgba(255, 107, 0, .3), transparent 60%),
		linear-gradient(160deg, #0b1226, #1b2a5e);
}

/* ===================================================================
   Archive header band
   =================================================================== */
.archive-header {
	background: linear-gradient(135deg, var(--yojana-primary), #142a82);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 28px 30px;
	margin-bottom: 22px;
}
.archive-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .85;
	margin-bottom: 6px;
}
.archive-title { font-size: clamp(24px, 4vw, 36px); margin: 0; }
.archive-desc { margin-top: 8px; opacity: .92; max-width: 720px; line-height: 1.6; }
.archive-header a { color: #ffe7c4; }
.no-results { padding: 26px 4px; color: var(--yojana-muted); }

/* ===================================================================
   Sidebar widget premium polish
   =================================================================== */
.sidebar .widget {
	background: var(--yojana-surface);
	border: 1px solid var(--yojana-border);
	border-radius: var(--radius);
	padding: 18px 20px;
	margin: 0 0 18px;
	box-shadow: var(--yojana-shadow-sm);
}

/* Premium footer accent line */
.site-footer { border-top: 4px solid var(--yojana-accent); }


/* =====================================================================
   Premium Footer 6.2
   ===================================================================== */
.premium-footer {
	position: relative;
	overflow: hidden;
	margin-top: 44px;
	background:
		radial-gradient(circle at 12% 0%, rgba(255,107,0,.12), transparent 28%),
		linear-gradient(145deg, #08122b 0%, #0d1a3b 52%, #071024 100%);
	color: #dbe5f5;
	border-top: 1px solid rgba(255,255,255,.10);
	box-shadow: 0 -20px 60px rgba(8,18,43,.12);
}
.premium-footer::before {
	content: ""; position: absolute; inset: 0 0 auto; height: 3px;
	background: linear-gradient(90deg, var(--yojana-primary), var(--yojana-accent), #ffd166);
}
.footer-glow { position:absolute; width:360px; height:360px; right:-170px; top:-210px; border-radius:50%; background:rgba(255,107,0,.08); filter:blur(8px); pointer-events:none; }
.premium-footer .footer-top { position:relative; display:grid; grid-template-columns:minmax(260px,.95fr) minmax(0,1.7fr); gap:54px; padding:58px 0 38px; }
.footer-brand-panel { max-width:420px; }
.footer-brand-mark { width:48px; height:48px; display:grid; place-items:center; border-radius:15px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); font-size:23px; margin-bottom:17px; }
.footer-brand-title { margin:0 0 12px; color:#fff; font-size:clamp(22px,2.5vw,30px); line-height:1.2; letter-spacing:-.02em; }
.footer-brand-description { margin:0; color:#aebbd2; line-height:1.75; font-size:14px; }
.footer-trust-badge { display:inline-flex; align-items:center; gap:8px; margin-top:20px; padding:8px 12px; border:1px solid rgba(255,255,255,.12); border-radius:999px; background:rgba(255,255,255,.05); color:#dce6f6; font-size:12px; font-weight:700; }
.trust-dot { width:8px; height:8px; border-radius:50%; background:#38d996; box-shadow:0 0 0 4px rgba(56,217,150,.10); }
.footer-columns { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:28px; }
.footer-section h3, .premium-footer .footer-widget-title { margin:0 0 14px; color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
.footer-section ul, .premium-footer .widget ul { list-style:none; padding:0; margin:0; }
.footer-section li, .premium-footer .widget li { margin:0 0 9px; }
.premium-footer a { color:#b8c6dd; text-decoration:none; transition:color .2s ease, transform .2s ease; }
.premium-footer a:hover { color:#fff; }
.footer-menu-wrap { border-top:1px solid rgba(255,255,255,.09); padding:20px 0; }
.footer-menu { display:flex; flex-wrap:wrap; justify-content:center; gap:8px 22px; list-style:none; margin:0; padding:0; }
.footer-menu a { font-size:12px; color:#9eacc5; }
.premium-footer .footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:20px; border-top:1px solid rgba(255,255,255,.09); padding:20px 0 24px; color:#8f9db6; font-size:12px; }
.footer-copyright a { color:#dce6f6; font-weight:700; }
.footer-meta { display:flex; gap:8px; align-items:center; text-align:right; }
html.yojana-dark .premium-footer { background:linear-gradient(145deg,#050a17 0%,#091228 52%,#030712 100%); box-shadow:0 -20px 60px rgba(0,0,0,.28); }
@media (max-width: 900px) {
	.premium-footer .footer-top { grid-template-columns:1fr; gap:36px; }
	.footer-brand-panel { max-width:680px; }
	.footer-columns { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 560px) {
	.premium-footer .footer-top { padding:42px 0 28px; }
	.footer-columns { grid-template-columns:1fr 1fr; gap:24px 18px; }
	.premium-footer .footer-bottom { flex-direction:column; align-items:flex-start; }
	.footer-meta { text-align:left; flex-wrap:wrap; }
	.footer-menu { justify-content:flex-start; }
}

/* YojanaPro 6.3 premium post + footer controls */
.premium-single-hero{position:relative;overflow:hidden;border-radius:22px;padding:clamp(22px,4vw,42px);background:linear-gradient(135deg,rgba(15,33,103,.08),rgba(30,58,138,.03));border:1px solid rgba(15,33,103,.10);box-shadow:0 18px 50px rgba(15,33,103,.08)}
.single-featured-image{margin:24px 0 0;border-radius:20px;overflow:hidden;background:#eef2f7;position:relative;box-shadow:0 20px 55px rgba(15,23,42,.14)}
.single-featured-image figcaption{position:absolute;left:16px;bottom:14px;padding:7px 11px;border-radius:999px;background:rgba(0,0,0,.58);color:#fff;font-size:11px;font-weight:700;max-width:80%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.archive-card-image{display:block;aspect-ratio:16/9;overflow:hidden;background:#edf2f7}.archive-card-image img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .45s ease}.premium-post-card:hover .archive-card-image img{transform:scale(1.045)}
.premium-post-card-body{padding:18px}.archive-card-category{display:inline-flex;padding:5px 9px;border-radius:999px;background:rgba(30,58,138,.08);color:var(--yojana-primary);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.05em}.archive-card-title{font-size:18px;margin:10px 0 8px;line-height:1.35}.archive-card-title a{color:inherit;text-decoration:none}.archive-card-excerpt{font-size:13px;color:#667085;line-height:1.65;margin:0 0 14px}.archive-card-footer{display:flex;align-items:center;justify-content:space-between;gap:10px;border-top:1px solid rgba(148,163,184,.18);padding-top:14px;font-size:11px;color:#7b8799}
.view-btn,.view-btn:visited{color:#fff!important}.view-btn:hover,.view-btn:focus-visible{background:var(--yojana-accent);color:#fff!important;box-shadow:0 8px 18px rgba(0,0,0,.14);transform:translateY(-1px)}.view-btn:active{color:#fff!important}.view-btn span{color:inherit}
.featured-card-header{min-height:180px;position:relative;overflow:hidden}.featured-card-header.has-featured-image{min-height:190px}.featured-card-image{position:absolute;inset:0;display:block}.featured-card-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}.featured-card:hover .featured-card-image img{transform:scale(1.045)}.featured-card-header.has-featured-image:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.5));pointer-events:none}.featured-card-header.has-featured-image .featured-badge{position:absolute;z-index:2;left:14px;bottom:14px;background:rgba(255,255,255,.94);color:var(--yojana-primary)}
.custom-footer-section ul{margin-top:0}.custom-footer-section li{margin-bottom:10px}.premium-footer .custom-footer-section a:hover{color:#fff;transform:translateX(2px)}
html.yojana-dark .premium-post-card{background:#0e1728;border-color:rgba(255,255,255,.08)}html.yojana-dark .archive-card-excerpt{color:#aab5c8}html.yojana-dark .archive-card-footer{border-color:rgba(255,255,255,.09);color:#95a3ba}html.yojana-dark .single-featured-image{background:#111827}html.yojana-dark .premium-single-hero{background:linear-gradient(135deg,rgba(30,58,138,.18),rgba(15,23,42,.12));border-color:rgba(255,255,255,.08)}
@media(max-width:700px){.single-featured-image{height:auto!important;aspect-ratio:16/9}.single-featured-image img{height:100%!important}.archive-card-title{font-size:17px}.featured-card-header.has-featured-image{min-height:170px}}
