/* ==========================================================================
   Kamli design system — one stylesheet, no framework, mobile-first.
   Tokens → base → layout → components → sections → utilities.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour (WCAG AA contrast checked against --bg / --surface) */
  --brand: #0b6e4f;          /* primary green (heritage of the old #006600) */
  --brand-strong: #075a40;
  --brand-soft: #e6f2ed;
  --accent: #b45309;         /* saffron/amber for highlights, 5.0:1 on white */
  --accent-soft: #fdf3e3;
  --text: #1c2622;
  --text-muted: #56615c;     /* 6.4:1 on white */
  --bg: #f7f8f6;
  --surface: #ffffff;
  --border: #dfe4e1;
  --focus: #1d4ed8;
  --danger: #b42318;
  --success: #067647;

  /* Type — system stack: zero font downloads, instant render */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-urdu: "Noto Nastaliq Urdu", "Jameel Noori Nastaleeq", "Urdu Typesetting", serif;
  --fs-xs: .8125rem;  --fs-sm: .9375rem;  --fs-md: 1.0625rem;  --fs-lg: 1.25rem;
  --fs-xl: clamp(1.375rem, 1.1rem + 1.2vw, 1.75rem);
  --fs-2xl: clamp(1.625rem, 1.2rem + 2vw, 2.375rem);
  --lh: 1.65;

  /* Space (4px scale) */
  --s1: .25rem; --s2: .5rem; --s3: .75rem; --s4: 1rem; --s5: 1.5rem; --s6: 2rem; --s7: 3rem; --s8: 4rem;

  --radius: 12px; --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(16,24,20,.06), 0 2px 8px rgba(16,24,20,.06);
  --container: 1200px;
  --measure: 72ch;
}

@media (prefers-color-scheme: dark) {
  :root {
    --brand: #4cc79a; --brand-strong: #7fdcb9; --brand-soft: #16302a;
    --accent: #f5b454; --accent-soft: #3a2a12;
    --text: #e7ece9; --text-muted: #a8b4ae; --bg: #0f1513; --surface: #161e1b; --border: #2a3531;
    --focus: #93b4ff;
    --shadow: 0 1px 2px rgba(0,0,0,.4);
  }
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); font-size: var(--fs-md); line-height: var(--lh);
  color: var(--text); background: var(--bg); overflow-wrap: break-word;
}
img, svg, picture { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-underline-offset: .15em; }
a:hover { color: var(--brand-strong); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 var(--s3); font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); margin-top: var(--s6); }
h3 { font-size: var(--fs-lg); margin-top: var(--s5); }
p, ul, ol, dl, table, blockquote { margin: 0 0 var(--s4); }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--s6) 0; }
blockquote { border-left: 4px solid var(--brand); padding: var(--s2) var(--s4); background: var(--brand-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }

/* ---------- 3. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s4); }
@media (min-width: 768px) { .container { padding-inline: var(--s5); } }
.site-main { min-height: 60vh; padding-bottom: var(--s7); outline: none; }
.layout { display: grid; gap: var(--s6); }
@media (min-width: 1024px) {
  .layout { grid-template-columns: minmax(0, 1fr) 300px; align-items: start; }
  .layout > aside { position: sticky; top: var(--s4); }
}
.section { margin-top: var(--s6); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s3); flex-wrap: wrap; }
.section-head h2 { margin: 0 0 var(--s3); }
.stack > * + * { margin-top: var(--s4); }

/* ---------- 4. Header & navigation ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: var(--s2) var(--s4); z-index: 100; }
.skip-link:focus { left: var(--s2); top: var(--s2); }
.site-header { background: var(--surface); border-bottom: 1px solid var(--border); }
.header-bar { display: flex; align-items: center; gap: var(--s3); min-height: 60px; }
.logo { display: inline-flex; align-items: center; gap: var(--s2); color: var(--brand); text-decoration: none; font-weight: 800; font-size: 1.25rem; white-space: nowrap; }
.logo span { color: var(--text); }
.logo .logo-dot { color: var(--text-muted); font-weight: 600; }
.header-search { flex: 1; display: flex; max-width: 460px; margin-left: auto; }
.header-search input { flex: 1; min-width: 0; }
.header-search button { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding-inline: var(--s3); }
.header-search input { border-radius: var(--radius-sm) 0 0 var(--radius-sm); border-right: 0; }
@media (max-width: 639px) { .header-search { display: none; } }

.nav-toggle { position: relative; margin-left: auto; }
.nav-toggle summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: var(--s2); padding: var(--s2) var(--s3); border: 1px solid var(--border); border-radius: var(--radius-sm); min-height: 44px; }
.nav-toggle summary::-webkit-details-marker { display: none; }
.burger, .burger::before, .burger::after { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.burger::before, .burger::after { content: ""; position: absolute; left: 0; }
.burger::before { top: -6px; } .burger::after { top: 6px; }
.nav-mobile { position: absolute; right: 0; top: calc(100% + 6px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); width: min(86vw, 300px); z-index: 50; padding: var(--s2); }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile a { display: block; padding: var(--s3); text-decoration: none; color: var(--text); border-radius: var(--radius-sm); }
.nav-mobile a:hover, .nav-mobile a[aria-current] { background: var(--brand-soft); color: var(--brand-strong); }
.nav-main { display: none; border-top: 1px solid var(--border); }
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-main { display: block; }
  .header-search { margin-left: var(--s6); }
}
.nav-main ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--s1); }
.nav-main a, .nav-main summary { display: block; padding: var(--s3) var(--s3); color: var(--text); text-decoration: none; font-weight: 600; font-size: var(--fs-sm); border-bottom: 3px solid transparent; cursor: pointer; }
.nav-main a:hover, .nav-main summary:hover { color: var(--brand); }
.nav-main a[aria-current] { border-bottom-color: var(--brand); color: var(--brand); }
.nav-more { position: relative; margin-left: auto; }
.nav-more summary { list-style: none; }
.nav-more summary::after { content: " ▾"; font-size: .8em; }
.nav-more summary::-webkit-details-marker { display: none; }
.nav-more ul { position: absolute; right: 0; top: 100%; display: block; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 200px; padding: var(--s2); z-index: 50; }
.nav-more ul a { border: 0; padding: var(--s2) var(--s3); border-radius: var(--radius-sm); }
.nav-more ul a:hover { background: var(--brand-soft); }

.breadcrumbs { padding-top: var(--s4); font-size: var(--fs-sm); }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--s1) var(--s2); }
.breadcrumbs li + li::before { content: "›"; margin-right: var(--s2); color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs [aria-current] { color: var(--text); }

/* ---------- 5. Components ---------- */
/* Page head */
.page-head { padding-top: var(--s5); padding-bottom: var(--s3); }
.page-head h1 { margin-bottom: var(--s2); }
.kicker { text-transform: uppercase; letter-spacing: .06em; font-size: var(--fs-xs); font-weight: 700; color: var(--accent); margin: 0 0 var(--s2); }
.lead { font-size: var(--fs-lg); color: var(--text-muted); max-width: var(--measure); margin: 0; }
.answer { background: var(--brand-soft); border-radius: var(--radius); padding: var(--s4) var(--s5); font-size: var(--fs-md); max-width: var(--measure); }
.answer strong { color: var(--brand-strong); }

/* Buttons & forms */
.btn, button { display: inline-flex; align-items: center; justify-content: center; gap: var(--s2); min-height: 44px; padding: var(--s2) var(--s4); border: 1px solid var(--brand); background: var(--brand); color: #fff; font: inherit; font-weight: 600; border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; }
.btn:hover, button:hover { background: var(--brand-strong); color: #fff; }
.btn--ghost { background: transparent; color: var(--brand); }
.btn--ghost:hover { background: var(--brand-soft); color: var(--brand-strong); }
.btn--danger { background: var(--danger); border-color: var(--danger); }
input, select, textarea { font: inherit; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: var(--s2) var(--s3); min-height: 44px; width: 100%; }
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); outline: 2px solid var(--brand-soft); }
label { display: block; font-weight: 600; margin-bottom: var(--s1); }
.field { margin-bottom: var(--s4); }
.field .hint { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--s1); }
.field .error { color: var(--danger); font-size: var(--fs-sm); margin-top: var(--s1); }
.hp { position: absolute; left: -9999px; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s5); max-width: 640px; }

/* Alerts */
.alert { border-radius: var(--radius-sm); padding: var(--s3) var(--s4); margin-bottom: var(--s4); border: 1px solid; }
.alert--success { background: #ecfdf3; border-color: #abefc6; color: #054f31; }
.alert--error { background: #fef3f2; border-color: #fecdca; color: #7a271a; }
.alert--info { background: var(--accent-soft); border-color: #f5d9a8; color: #7a3d06; }
@media (prefers-color-scheme: dark) { .alert--success, .alert--error, .alert--info { background: var(--surface); color: var(--text); } }

/* Cards */
.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .15s; }
.card:hover { box-shadow: var(--shadow); }
.card-body { padding: var(--s4); display: flex; flex-direction: column; gap: var(--s2); flex: 1; }
.card-body p { margin: 0; color: var(--text-muted); font-size: var(--fs-sm); }
.card-title { font-size: var(--fs-md); margin: 0; }
.card-title a { color: var(--text); text-decoration: none; }
.card-title a::after { content: ""; position: absolute; inset: 0; }
.card { position: relative; }
.card-title a:hover { color: var(--brand); }
.card .meta { font-size: var(--fs-xs); margin-top: auto; }
.badge { align-self: flex-start; font-size: var(--fs-xs); font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 2px var(--s2); border-radius: 999px; }

/* Images: box reserves space before load (CLS = 0) */
.pic { display: block; background: var(--brand-soft); }
.pic img { width: 100%; height: 100%; object-fit: cover; }
.pic--box { width: 100%; overflow: hidden; }
.card-img { aspect-ratio: 4/3; }
.card-img img { aspect-ratio: 4/3; }

/* Chips (category filters) */
.chips ul { list-style: none; padding: 0; margin: 0 0 var(--s4); display: flex; flex-wrap: wrap; gap: var(--s2); }
.chips a { display: inline-flex; align-items: center; gap: var(--s1); min-height: 36px; padding: var(--s1) var(--s3); border: 1px solid var(--border); border-radius: 999px; background: var(--surface); color: var(--text); text-decoration: none; font-size: var(--fs-sm); }
.chips a:hover, .chips a[aria-current] { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-strong); }
.chips .count { color: var(--text-muted); font-size: var(--fs-xs); }

/* Link lists */
.link-list { list-style: none; padding: 0; margin: 0; }
.link-list li { padding: var(--s3) 0; border-bottom: 1px solid var(--border); }
.link-list li:last-child { border-bottom: 0; }
.link-list a { font-weight: 600; text-decoration: none; }
.link-list a:hover { text-decoration: underline; }
.link-list .meta { display: block; }
.link-list p { margin: var(--s1) 0 0; color: var(--text-muted); font-size: var(--fs-sm); }
.link-list--cols { columns: 1; column-gap: var(--s6); }
.link-list--cols li { break-inside: avoid; }
@media (min-width: 640px) { .link-list--cols { columns: 2; } }
@media (min-width: 1024px) { .link-list--cols { columns: 3; } }
.meta, .muted { color: var(--text-muted); font-size: var(--fs-sm); }

/* Panels / sidebar boxes */
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s4) var(--s5); }
.panel h2, .panel h3 { margin-top: 0; font-size: var(--fs-lg); }
.panel + .panel { margin-top: var(--s4); }

/* Tables (responsive) */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: var(--s4); }
table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
th, td { text-align: left; padding: var(--s3); border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--brand-soft); font-weight: 700; white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
@media (max-width: 639px) {
  .table-stack thead { display: none; }
  .table-stack tr { display: block; padding: var(--s3); border-bottom: 1px solid var(--border); }
  .table-stack td { display: block; border: 0; padding: var(--s1) 0; }
  .table-stack td::before { content: attr(data-label) ": "; font-weight: 700; color: var(--text-muted); }
  .table-stack td:first-child::before { content: none; }
  .table-stack td:first-child { font-weight: 700; }
}

/* Pagination */
.pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s2); margin-top: var(--s6); }
.pagination ul { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s1); margin: 0; padding: 0; }
.pagination li a, .pagination li span { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm); text-decoration: none; }
.pagination li a { border: 1px solid var(--border); background: var(--surface); }
.pagination li [aria-current] { background: var(--brand); color: #fff; font-weight: 700; }
.pagination .gap { color: var(--text-muted); }

/* Alphabet navigation */
.alpha { display: flex; flex-wrap: wrap; gap: var(--s1); list-style: none; padding: 0; margin: 0 0 var(--s5); }
.alpha a, .alpha span { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); text-decoration: none; font-weight: 700; }
.alpha [aria-current] { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Prose (article bodies) */
.prose { max-width: var(--measure); }
.prose h2 { font-size: var(--fs-xl); }
.prose img { border-radius: var(--radius-sm); margin: var(--s4) 0; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: var(--s1); }
.byline { color: var(--text-muted); font-size: var(--fs-sm); display: flex; flex-wrap: wrap; gap: var(--s1) var(--s4); margin-bottom: var(--s5); }

/* Definition list */
.facts { display: grid; grid-template-columns: max-content 1fr; gap: var(--s2) var(--s4); margin: 0 0 var(--s5); }
.facts dt { font-weight: 700; color: var(--text-muted); }
.facts dd { margin: 0; }

/* FAQ */
.faq details { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); padding: var(--s3) var(--s4); }
.faq details + details { margin-top: var(--s2); }
.faq summary { cursor: pointer; font-weight: 700; }
.faq details[open] summary { margin-bottom: var(--s2); }

/* Ads: space reserved to avoid CLS */
.ad { margin: var(--s5) 0; text-align: center; min-height: 280px; }
.ad--top { min-height: 100px; }
@media (min-width: 768px) { .ad--top { min-height: 90px; } }
.ad--sidebar { min-height: 600px; }
.ad-label { display: block; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--s1); }

/* Hero */
.hero { background: linear-gradient(135deg, var(--brand-soft), var(--accent-soft)); border-bottom: 1px solid var(--border); padding: var(--s6) 0; }
.hero h1 { max-width: 20ch; }
.hero .lead { margin-bottom: var(--s5); }
.hero-search { display: flex; max-width: 560px; gap: var(--s2); }
.stats { display: flex; flex-wrap: wrap; gap: var(--s5); margin-top: var(--s5); list-style: none; padding: 0; }
.stats strong { display: block; font-size: var(--fs-xl); color: var(--brand-strong); }
.stats span { color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------- 6. Section specifics ---------- */
/* Recipes */
.recipe-grid { display: grid; gap: var(--s5); }
@media (min-width: 768px) { .recipe-grid { grid-template-columns: 1fr 1.4fr; } }
.recipe-hero { border-radius: var(--radius); overflow: hidden; margin-bottom: var(--s5); max-width: 720px; }
.ingredients { list-style: none; padding: 0; }
.ingredients li { padding: var(--s2) 0 var(--s2) var(--s5); border-bottom: 1px dashed var(--border); position: relative; }
.ingredients li::before { content: ""; position: absolute; left: 4px; top: 1.05em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { counter-increment: step; position: relative; padding: 0 0 var(--s4) 3rem; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 2rem; height: 2rem; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: var(--fs-sm); }

/* Poetry: Urdu text + original calligraphy image shown at native size (never upscaled) */
.urdu { font-family: var(--font-urdu); direction: rtl; text-align: center; font-size: 1.5rem; line-height: 2.4; }
.poem-text { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s5); }
.poem-image { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s4); display: flex; justify-content: center; }
.poem-image img { width: auto; max-width: 100%; height: auto; image-rendering: auto; }
.poem-roman { font-family: var(--font-serif); font-style: italic; font-size: var(--fs-lg); text-align: center; }
.poet-card-img { width: auto; height: auto; }

/* Directory */
.company { display: grid; gap: var(--s4); }
.notice { font-size: var(--fs-sm); color: var(--text-muted); border-left: 3px solid var(--accent); padding-left: var(--s3); }

/* Horoscope */
.signs { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s3); grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.signs a { display: block; text-align: center; padding: var(--s4) var(--s2); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; font-weight: 700; }
.signs a:hover { border-color: var(--brand); background: var(--brand-soft); }
.signs .glyph { display: block; font-size: 2rem; line-height: 1.2; }
.signs small { display: block; color: var(--text-muted); font-weight: 400; font-size: var(--fs-xs); }

/* Wallpapers / models gallery */
.gallery { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s3); grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr)); }
.gallery a { display: block; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); background: var(--surface); text-decoration: none; }
.gallery span.cap { display: block; padding: var(--s2) var(--s3); font-size: var(--fs-sm); color: var(--text); }

/* Footer */
.site-footer { background: #10231c; color: #d6e2dc; padding: var(--s7) 0 var(--s4); margin-top: var(--s7); }
.site-footer a { color: #d6e2dc; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: var(--s1) 0; }
.site-footer .muted { color: #a9bcb3; }
.footer-grid { display: grid; gap: var(--s5); grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { font-weight: 800; font-size: var(--fs-lg); color: #fff; margin-bottom: var(--s2); }
.footer-title { font-weight: 700; color: #fff; margin-bottom: var(--s2); }
.footer-bottom { border-top: 1px solid #28413a; margin-top: var(--s6); padding-top: var(--s4); font-size: var(--fs-sm); color: #a9bcb3; }

/* Error pages */
.error-page { text-align: center; padding: var(--s8) 0; }
.error-page .code { font-size: 4rem; font-weight: 800; color: var(--brand); line-height: 1; }

/* ---------- 7. Utilities ---------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.empty { color: var(--text-muted); font-style: italic; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media print {
  .site-header, .site-footer, .ad, .breadcrumbs, .pagination, .nav-main { display: none !important; }
  body { background: #fff; color: #000; }
}
.container .container{padding-inline:0}
/* Glossary definition list */
.glossary-list dt { font-weight: 700; margin-top: var(--s4); }
.glossary-list dd { margin: var(--s1) 0 0; color: var(--text-muted); max-width: var(--measure); }
.signs--compact { grid-template-columns: repeat(2, 1fr); } .signs--compact .glyph { font-size: 1.4rem; }
/* Admin */
.admin-nav { display: flex; align-items: center; gap: var(--s4); margin-left: auto; flex-wrap: wrap; }
.admin-nav form { margin: 0; }
.admin-login { margin: var(--s7) auto; }
.admin-grid { display: grid; gap: var(--s5); }
@media (min-width: 1024px) { .admin-grid { grid-template-columns: minmax(0, 1fr) 380px; align-items: start; } }
.admin-form { max-width: none; }
.field--check label { display: flex; gap: var(--s2); align-items: center; font-weight: 400; }
.field--check input { width: auto; min-height: 0; }
textarea[dir="rtl"] { font-family: var(--font-urdu); font-size: 1.25rem; line-height: 2.2; }
.card-img--placeholder { display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3; color: var(--brand); background: linear-gradient(135deg, var(--brand-soft), var(--accent-soft)); }
@media (max-width: 639px) { .header-search.header-search--mobile { display: flex; margin: 0 0 var(--s2); max-width: none; } }
@media (min-width: 640px) { .header-search--mobile { display: none; } }
