/* UP Times: mobile-first, system Devanagari fonts, one accent, no shadows. */

:root {
	--brand: #0F6E73;
	--brand-ink: #0B5559;
	--alert: #C8102E;
	--ink: #1F1A17;
	--ink-2: #47423E;
	--mute: #6E6A66;
	--paper: #FFFFFF;
	--surface: #F3F4F6;
	--line: #E3E5E9;
	--chip: #E6F2F2;
	--wa-bg: #DCF8E5;
	--wa-ink: #0B6B3A;
	--radius: 8px;
	--wrap: 1080px;
	--read: 720px;
	--head-h: 52px;
	--font: "Noto Sans Devanagari", "Mukta", "Hind", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color-scheme: light;
}

:root[data-theme="dark"] {
	--brand: #3EB0B5;
	--brand-ink: #74CCD0;
	--ink: #ECEDEF;
	--ink-2: #C6C9CE;
	--mute: #9AA0A7;
	--paper: #121417;
	--surface: #1B1E23;
	--line: #2B2F36;
	--chip: #16302F;
	--wa-bg: #163F2B;
	--wa-ink: #8BE3AE;
	color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--brand: #3EB0B5;
		--brand-ink: #74CCD0;
		--ink: #ECEDEF;
		--ink-2: #C6C9CE;
		--mute: #9AA0A7;
		--paper: #121417;
		--surface: #1B1E23;
		--line: #2B2F36;
		--chip: #16302F;
		--wa-bg: #163F2B;
		--wa-ink: #8BE3AE;
		color-scheme: dark;
	}
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--head-h) + 8px); }
body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--paper);
	overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.35; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.screen-reader-text { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; padding: 8px 14px; background: var(--brand); color: #fff; font-weight: 700; }
.skip-link:focus { left: 8px; top: 8px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 12px; }
.i { width: 22px; height: 22px; }

/* Header */
.site-head { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--line); }
.head-row { display: flex; align-items: center; gap: 4px; height: var(--head-h); }
.brand { flex: 1; min-width: 0; display: flex; justify-content: center; align-items: center; }
.brand .custom-logo-link { display: block; line-height: 0; }
.brand .custom-logo { max-height: 38px; width: auto; }
.wordmark { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap; }
.wordmark::before { content: ""; display: inline-block; width: 8px; height: 22px; background: var(--brand); border-radius: 2px; margin-right: 8px; vertical-align: -3px; }
.head-actions { display: flex; gap: 2px; }
.icon-btn { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--ink); }
.icon-btn:active { background: var(--surface); }
.js-nav-toggle .i-close, .js-nav-toggle[aria-expanded="true"] .i-menu { display: none; }
.js-nav-toggle[aria-expanded="true"] .i-close { display: block; }
.js-theme-toggle .i-sun { display: none; }
:root[data-theme="dark"] .js-theme-toggle .i-sun { display: block; }
:root[data-theme="dark"] .js-theme-toggle .i-moon { display: none; }

.search-bar { padding: 6px 12px 12px; }
.search-form { display: flex; gap: 8px; }
.search-form input { flex: 1; min-width: 0; height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.search-form button { height: 44px; padding: 0 16px; border-radius: var(--radius); background: var(--brand); color: #fff; font-weight: 700; }

.site-nav { border-top: 1px solid var(--line); background: var(--surface); max-height: calc(100vh - var(--head-h)); overflow: auto; }
.site-nav .wrap { padding-top: 8px; padding-bottom: 12px; }
.nav-list { list-style: none; }
.nav-list > li { border-bottom: 1px solid var(--line); }
.nav-list a { display: block; padding: 11px 4px; font-weight: 600; font-size: 15.5px; }
.nav-list .sub-menu, .nav-list .children { list-style: none; padding-left: 14px; }
.nav-list .sub-menu a, .nav-list .children a { font-weight: 500; padding-top: 7px; padding-bottom: 7px; }
.social { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--paper); border: 1px solid var(--line); }

.chips { overflow-x: auto; scrollbar-width: none; padding-top: 6px; padding-bottom: 8px; }
.chips::-webkit-scrollbar { display: none; }
.chips-list { display: flex; gap: 6px; list-style: none; width: max-content; }
.chips-list a { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; white-space: nowrap; line-height: 20px; }
.chips-list .current-menu-item > a, .chips-list .current_page_item > a { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Breaking ticker */
.ticker { display: flex; align-items: stretch; height: 36px; background: var(--alert); color: #fff; overflow: hidden; }
.ticker-tag { flex: none; display: flex; align-items: center; padding: 0 10px; font-size: 13px; font-weight: 800; background: rgba(0, 0, 0, 0.2); }
.ticker-track { flex: 1; min-width: 0; overflow: hidden; display: flex; align-items: center; }
.ticker-list { display: flex; gap: 40px; list-style: none; padding: 0 16px; white-space: nowrap; width: max-content; animation: tk var(--tk-dur, 40s) linear infinite; }
.ticker-list li { font-size: 14px; font-weight: 600; }
.ticker-list li::before { content: "•"; margin-right: 8px; opacity: 0.7; }
.ticker:hover .ticker-list { animation-play-state: paused; }
@keyframes tk { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
	.ticker-list { animation: none; }
	.ticker-track { overflow-x: auto; scrollbar-width: none; }
}

/* Layout */
.layout { padding: 12px 12px 28px; }
.main { min-width: 0; }
.side { display: none; }
.only-mobile { display: block; }
@media (min-width: 960px) {
	.layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 36px; padding-top: 20px; }
	.side { display: block; }
	.only-mobile { display: none; }
}

/* Cards */
.card-media, .card-thumb { display: block; background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.card-media .noimg { display: block; aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--surface), var(--chip)); }
.card-title { font-size: 16px; line-height: 1.45; }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--brand); }
.card-hero .card-body { padding: 10px 0 2px; }
.card-title-xl { font-size: 22px; line-height: 1.33; margin: 6px 0 6px; }
.card-excerpt { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.rows { margin-top: 4px; }
.card-row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line); }
.card-row .card-body { flex: 1; min-width: 0; }
.card-row .card-title { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-thumb { flex: none; width: 112px; border-radius: 6px; }
.card-thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-medium { padding-top: 10px; }
.card-medium .card-title { font-size: 18px; margin-top: 8px; }
.meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 6px; font-size: 12.5px; color: var(--mute); }
.pill { display: inline-block; padding: 0 9px; border-radius: 999px; background: var(--chip); color: var(--brand-ink); font-size: 12px; font-weight: 700; line-height: 21px; }
.pill-cat { background: var(--surface); color: var(--ink-2); }
.card-hero .meta { margin-top: 0; }

/* Sections */
.block { margin-top: 24px; }
.block-title { font-size: 19px; line-height: 1.2; padding-left: 10px; border-left: 4px solid var(--brand); margin-bottom: 4px; }
.block-title a { color: var(--ink); }
.more { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--brand); }
.empty { padding: 20px 0; color: var(--mute); }

.districts { margin-top: 20px; padding: 12px 12px 10px; border-radius: 12px; background: var(--surface); }
.districts h2 { font-size: 15px; margin-bottom: 8px; }
.chips-scroll { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.chips-scroll::-webkit-scrollbar { display: none; }
.chips-scroll a, .chips-wrap a { flex: none; display: inline-block; padding: 6px 12px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; white-space: nowrap; line-height: 20px; }
.chips-scroll a.all, .chips-wrap a.all { background: var(--brand); border-color: var(--brand); color: #fff; }
.chips-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.chips-wrap a { background: var(--surface); }
.siblings { margin-top: 10px; }
.siblings > span { display: block; font-size: 12.5px; color: var(--mute); margin-bottom: 6px; }

.archive-head { padding: 4px 0 12px; border-bottom: 2px solid var(--ink); margin-bottom: 4px; }
.archive-head h1 { font-size: 24px; line-height: 1.3; }
.archive-head p { margin: 6px 0 0; font-size: 14.5px; color: var(--ink-2); }
.archive-head .search-form { margin-top: 10px; }

/* Trending: ranked list, so the numbers mean something */
.trend { list-style: none; counter-reset: t; }
.trend li { counter-increment: t; display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--line); }
.trend li::before { content: counter(t); flex: none; min-width: 20px; font-size: 22px; font-weight: 800; line-height: 1; color: var(--brand); }
.trend a { font-size: 15px; font-weight: 600; line-height: 1.45; }

/* Article */
.article { max-width: var(--read); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font-size: 12.5px; color: var(--mute); margin-bottom: 10px; }
.crumbs li + li::before { content: "›"; margin-right: 6px; }
.crumbs a:hover { color: var(--brand); }
.article-head .pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.article-title { font-size: 26px; line-height: 1.32; letter-spacing: -0.005em; }
.standfirst { margin: 10px 0 0; font-size: 17px; line-height: 1.55; color: var(--ink-2); }
.byline { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: center; margin-top: 12px; font-size: 13px; color: var(--mute); }
.byline .by a { font-weight: 700; color: var(--ink); }
.byline .updated { color: var(--brand-ink); }
.share { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 12px; border-radius: 999px; background: var(--surface); color: var(--ink); font-size: 13px; font-weight: 700; }
.share-btn .i { width: 18px; height: 18px; }
.share-whatsapp { background: var(--wa-bg); color: var(--wa-ink); }
.share-compact { margin: 10px 0 4px; }
.share-compact .share-btn:not(.share-whatsapp) { width: 36px; padding: 0; justify-content: center; }
.share-compact .share-btn:not(.share-whatsapp) span { position: absolute; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; }
.figure { margin: 14px 0; }
.figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); background: var(--surface); }
.figure figcaption { margin-top: 6px; font-size: 12.5px; color: var(--mute); }
.keypoints { margin: 16px 0; padding: 12px 14px; border-radius: 10px; background: var(--chip); border-left: 4px solid var(--brand); }
.keypoints h2 { font-size: 15px; color: var(--brand-ink); margin-bottom: 6px; }
.keypoints ul { padding-left: 18px; font-size: 15px; line-height: 1.6; }
.keypoints li + li { margin-top: 4px; }

.entry { font-size: 17.5px; line-height: 1.75; }
.entry > * { margin-top: 0; margin-bottom: 1.15em; }
.entry h2 { font-size: 21px; margin-top: 1.4em; margin-bottom: 0.5em; }
.entry h3 { font-size: 18.5px; margin-top: 1.2em; margin-bottom: 0.4em; }
.entry a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.entry img { border-radius: var(--radius); }
.entry figure { margin-left: 0; margin-right: 0; }
.entry figcaption, .entry .wp-caption-text, .entry .wp-element-caption { font-size: 12.5px; color: var(--mute); text-align: center; margin-top: 6px; }
.entry blockquote { margin-left: 0; margin-right: 0; padding: 8px 16px; border-left: 4px solid var(--brand); background: var(--surface); border-radius: 0 8px 8px 0; }
.entry blockquote p:last-child { margin-bottom: 0; }
.entry ul, .entry ol { padding-left: 22px; }
.entry li { margin-bottom: 0.35em; }
.entry .alignfull { margin-left: -12px; margin-right: -12px; width: auto; max-width: none; }
.entry iframe, .entry video, .entry embed { max-width: 100%; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.15em; }
.entry table { width: 100%; min-width: 420px; border-collapse: collapse; font-size: 15px; line-height: 1.5; margin: 0; }
.entry th, .entry td { padding: 8px 10px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.entry th { background: var(--surface); font-weight: 700; }
.page-links { margin: 1em 0; font-weight: 600; }

.upt-also-read { margin: 1.15em 0; padding: 10px 14px; border-radius: 8px; background: var(--surface); border-left: 4px solid var(--alert); font-size: 15px; line-height: 1.5; }
.upt-also-read span { display: block; font-size: 12px; font-weight: 800; color: var(--alert); margin-bottom: 2px; }
.upt-also-read a { color: var(--ink); font-weight: 600; text-decoration: none; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0; }
.tags a { padding: 4px 10px; border-radius: 6px; background: var(--surface); font-size: 13px; font-weight: 600; }
.wa-cta { display: flex; align-items: center; gap: 10px; margin: 16px 0; padding: 12px 14px; border-radius: 10px; background: var(--wa-bg); color: var(--wa-ink); font-size: 15px; font-weight: 700; }
.wa-cta .i { width: 24px; height: 24px; flex: none; }
.author-box { display: flex; gap: 12px; align-items: flex-start; margin: 18px 0; padding: 14px; border: 1px solid var(--line); border-radius: 10px; }
.author-box .avatar { flex: none; width: 52px; height: 52px; border-radius: 50%; }
.author-box h3 { font-size: 15px; }
.author-box p { margin: 4px 0 0; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.page-article .article-title { margin-bottom: 10px; }

/* Ads: reserve height so nothing jumps (CLS) */
.ad { margin: 16px 0; text-align: center; min-height: 60px; }
.ad-sticky { position: sticky; top: calc(var(--head-h) + 12px); }
.ad-label { display: block; font-size: 11px; color: var(--mute); margin-bottom: 4px; }

/* Pagination */
.pagination { margin: 20px 0; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px; background: var(--surface); font-size: 14px; font-weight: 700; }
.page-numbers.current { background: var(--brand); color: #fff; }
.page-numbers.dots { background: none; }

/* Comments */
.comments { margin-top: 28px; }
.comment-list { list-style: none; }
.comment-list .children { list-style: none; padding-left: 20px; }
.comment-body { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.comment-meta { font-size: 13px; color: var(--mute); margin-bottom: 4px; }
.comment-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.comment-form input:not([type="submit"]):not([type="checkbox"]), .comment-form textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.comment-form p { margin-bottom: 12px; }
.comment-form .submit { height: 44px; padding: 0 20px; border: 0; border-radius: 8px; background: var(--brand); color: #fff; font-weight: 700; cursor: pointer; }
.bypostauthor .comment-author::after { content: " (लेखक)"; font-size: 12px; color: var(--brand-ink); }

/* 404 */
.err { text-align: center; padding: 36px 0 12px; }
.err h1 { font-size: 26px; margin-bottom: 8px; }
.err p { color: var(--ink-2); }

/* Sidebar */
.side-block { margin-bottom: 24px; }
.side .block-title { margin-bottom: 6px; }
.widget ul { list-style: none; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 15px; }

/* Footer */
.site-foot { margin-top: 32px; padding: 24px 0 calc(24px + env(safe-area-inset-bottom, 0px)); background: var(--surface); border-top: 1px solid var(--line); font-size: 14px; }
.foot-top { display: flex; flex-direction: column; gap: 18px; }
.foot-brand p { margin: 8px 0 0; color: var(--ink-2); line-height: 1.6; max-width: 560px; }
.foot-list { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; }
.foot-list a { font-weight: 600; }
.foot-copy { margin: 18px 0 0; color: var(--mute); font-size: 13px; }
@media (min-width: 720px) {
	.foot-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

/* Bigger screens */
@media (min-width: 600px) {
	.article-title { font-size: 32px; }
	.card-title-xl { font-size: 26px; }
	.card-row .card-title { font-size: 17px; }
	.card-thumb { width: 150px; }
	.wordmark { font-size: 24px; }
	.nav-list { columns: 2; column-gap: 24px; }
	.nav-list > li { break-inside: avoid; }
}
@media (min-width: 960px) {
	.head-row { height: 60px; }
	.brand { justify-content: flex-start; }
	.nav-list { columns: 4; }
	.chips-list { width: auto; flex-wrap: wrap; }
	.entry .alignfull { margin-left: 0; margin-right: 0; }
}
@media print {
	.site-head, .ticker, .ad, .share, .wa-cta, .side, .site-foot, .related { display: none !important; }
}

/* District page and autopost extras */
.district-mandal { margin: 4px 0 0; font-size: 13.5px; color: var(--mute); }
.district-mandal a { color: var(--brand-ink); font-weight: 600; }
.district-intro { margin: 10px 0 2px; padding: 10px 12px; border-radius: 8px; background: var(--surface); font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }
.district-intro p { margin: 0; }
.upt-source { font-size: 13px; color: var(--mute); border-top: 1px solid var(--line); padding-top: 10px; }
.upt-source a { color: var(--mute); text-decoration: none; }
.upt-districts h3 { margin-top: 18px; font-size: 16px; }
.upt-districts .chips-wrap { margin-top: 8px; }
.upt-districts small { color: var(--mute); font-weight: 500; }

/* Jobs: box on the article, list rows, filter form */
.jobbox { margin: 0 0 18px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; font-size: 15px; }
.jobbox-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 10px 14px; background: var(--surface); }
.jobbox-type { font-weight: 700; }
.jobbox-badge { padding: 2px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 700; background: var(--chip); color: var(--brand-ink); }
.jobbox-closed .jobbox-badge { background: #F3D9DC; color: #8A1020; }
.jobbox-soon .jobbox-badge { background: #FCEFC7; color: #7A5200; }
.jobbox-table, .entry .jobbox-table { width: 100%; min-width: 0; border-collapse: collapse; font-size: 15px; margin: 0; }
.jobbox-table th, .jobbox-table td { padding: 8px 14px; border-top: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 1.5; }
.jobbox-table th { width: 34%; color: var(--mute); font-weight: 600; white-space: nowrap; }
.jobbox-actions { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); }
.btn { display: inline-flex; align-items: center; height: 40px; padding: 0 16px; border-radius: 8px; background: var(--surface); border: 1px solid var(--line); font-weight: 700; font-size: 14px; }
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.joblist { display: flex; flex-direction: column; }
.jobrow { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; padding: 11px 0; border-bottom: 1px solid var(--line); align-items: start; }
.jobrow-title { grid-column: 1 / -1; font-weight: 700; font-size: 15.5px; line-height: 1.4; }
.jobrow-meta { font-size: 12.5px; color: var(--mute); }
.jobrow-badge { font-size: 12px; font-weight: 700; color: var(--brand-ink); white-space: nowrap; }
.jobrow-closed .jobrow-badge { color: #8A1020; }
.jobfilter { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 0 12px; }
.jobfilter input, .jobfilter select { height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--ink); font: inherit; min-width: 0; }
.jobfilter input { grid-column: 1 / -1; }
.jobfilter button { grid-column: 1 / -1; height: 42px; border-radius: 8px; background: var(--brand); color: #fff; font-weight: 700; }
@media (min-width: 600px) { .jobfilter { grid-template-columns: 2fr 1fr 1fr auto; } .jobfilter input, .jobfilter button { grid-column: auto; } .jobfilter button { padding: 0 18px; } }
.entry .jobbox a.btn { color: var(--ink); text-decoration: none; }
.entry .jobbox a.btn-primary { color: #fff; }
.entry .upt-source a { text-decoration: none; }

/* Section hub pages */
.hub-head { padding: 6px 0 10px; }
.hub-title { font-size: 26px; line-height: 1.3; }
.hub-tagline { margin: 6px 0 0; font-size: 15px; color: var(--ink-2); }
.hub-hero { display: block; margin: 8px 0 14px; border-radius: 12px; overflow: hidden; background: var(--surface); }
.hub-hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hub-hero-body { display: block; padding: 12px 14px 14px; }
.hub-hero-title { display: block; margin-top: 8px; font-size: 19px; font-weight: 700; line-height: 1.4; }
.hub-hero-date { display: block; margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--alert); }
.hub-ticker { display: flex; align-items: center; gap: 8px; margin: 0 -12px 12px; padding: 8px 12px; background: var(--chip); }
.hub-ticker-tag { flex: none; font-size: 12.5px; font-weight: 800; color: var(--alert); }
.hub-ticker .chips-scroll a { font-weight: 600; font-size: 13px; }
.hub-ticker .chips-scroll a b { color: var(--alert); }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.quick { display: flex; flex-direction: column; justify-content: center; min-height: 56px; padding: 10px 12px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); font-weight: 700; font-size: 14px; line-height: 1.35; }
.quick small { font-weight: 500; font-size: 12px; color: var(--mute); margin-top: 2px; }
.hub-types .block { margin-top: 20px; }
.finder { margin-top: 8px; }
.finder-form { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.finder-form select, .finder-form input { height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--ink); font: inherit; min-width: 0; }
.finder-form input, .finder-form .btn { grid-column: 1 / -1; justify-content: center; }
.finder-note { margin: 10px 0 0; font-size: 12.5px; color: var(--mute); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { padding: 12px 0; font-weight: 700; font-size: 15px; cursor: pointer; list-style: none; position: relative; padding-right: 24px; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 10px; font-size: 20px; color: var(--brand); }
.faq[open] summary::after { content: "–"; }
.faq p { margin: 0 0 12px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.hub-text { font-size: 15px; color: var(--ink-2); }
.chips-list .chip-hub a { background: var(--chip); border-color: var(--chip); color: var(--brand-ink); }
@media (min-width: 600px) { .quick-grid { grid-template-columns: repeat(4, 1fr); } .finder-form { grid-template-columns: 1fr 1fr 1fr auto; } .finder-form input, .finder-form .btn { grid-column: auto; } .hub-title { font-size: 32px; } .hub-ticker { margin-left: 0; margin-right: 0; border-radius: 10px; } }

/* Hub inside page content: undo article link styling */
.entry .hub a, .entry .joblist a, .entry .finder a, .entry .chips-wrap a, .entry .chips-scroll a, .entry .trend a { text-decoration: none; color: var(--ink); }
.entry .hub .more, .entry .hub .jobrow-badge, .entry .hub .pill { color: var(--brand-ink); }
.entry .hub .jobrow-closed .jobrow-badge { color: #8A1020; }
.entry .hub .btn-primary, .entry .hub .chips-scroll a.all { color: #fff; }
.entry .hub-hero-date { color: var(--alert); }
.entry .hub > * { margin-bottom: 0; }
.entry .hub .block { margin-top: 24px; }
.page-article .entry { font-size: 16px; }

/* मेरा जिला (home, from localStorage) */
.my-district { margin-bottom: 12px; padding: 10px 12px; border-radius: 10px; background: var(--chip); }
.md-head { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.md-head > span { flex: 1; color: var(--brand-ink); }
.md-head .md-link { font-weight: 700; color: var(--brand-ink); }
.md-clear { width: 28px; height: 28px; border-radius: 50%; color: var(--mute); }
.md-list { list-style: none; margin-top: 6px; }
.md-list li { padding: 6px 0; border-top: 1px solid rgba(0,0,0,.06); font-size: 14.5px; font-weight: 600; line-height: 1.4; }
