/* =========================================================================
   Youth Worldwide Foundation
   Design tokens -> primitives -> layout -> components -> utilities
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Sampled directly from the Foundation's logo:
       blue  #004090  the globe and the word YOUTH
       green #50A000  the figures and the word WORLDWIDE
       gold  #C08000  the word FOUNDATION
     Blue leads, as it does in the mark. The green and gold are used as they are in the
     logo — supporting, not carrying the page.
     The gold is darkened for anything bearing white text: #C08000 gives only ~3.2:1
     against white, below the 4.5:1 needed for body-size type. */
  --ink:        #0B1420;
  --ink-2:      #33414F;
  --ink-3:      #5B6B7A;
  --line:       #DDE4EC;
  --line-soft:  #EDF1F6;
  --paper:      #FFFFFF;
  --paper-2:    #F5F8FC;
  --paper-3:    #E9F0F8;

  --brand:      #00408F;
  --brand-dk:   #002E68;
  --brand-lt:   #E6EEF9;
  --accent:     #8F6000;   /* logo gold, darkened to carry white text */
  --accent-dk:  #6F4A00;
  --accent-lt:  #FBF3E2;
  --leaf:       #50A000;   /* logo green — decorative only, 3.4:1 on white */
  --leaf-dk:    #3E7D00;

  --focus:      #00408F;

  /* Type */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-bn:   "Hind Siliguri", "Noto Sans Bengali", var(--font-sans);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;

  /* Scale — fluid, clamped so it never gets silly at either end */
  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1.0625rem;
  --t-lg:   clamp(1.125rem, 0.4vw + 1.05rem, 1.25rem);
  --t-xl:   clamp(1.375rem, 1vw + 1.1rem, 1.75rem);
  --t-2xl:  clamp(1.75rem, 2vw + 1.2rem, 2.5rem);
  --t-3xl:  clamp(2.125rem, 3.4vw + 1.2rem, 3.5rem);
  --t-4xl:  clamp(2.5rem, 5vw + 1rem, 4.5rem);

  /* Space */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;     --s-7: 3rem;     --s-8: 4rem;
  --s-9: 6rem;     --s-10: 8rem;

  --wrap: 72rem;
  --wrap-narrow: 44rem;
  --gutter: 1.25rem;

  --radius:    10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgb(14 26 22 / 0.05), 0 1px 3px rgb(14 26 22 / 0.06);
  --shadow-2: 0 4px 12px rgb(14 26 22 / 0.07), 0 2px 4px rgb(14 26 22 / 0.05);
  --shadow-3: 0 18px 40px rgb(14 26 22 / 0.13);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 40rem) { :root { --gutter: 2rem; } }

/* ---------- Reset / primitives ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--t-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Bengali content gets a face that actually has the glyphs */
:lang(bn), .bn { font-family: var(--font-bn); line-height: 1.85; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
h1 { font-size: var(--t-3xl); }
h2 { font-size: var(--t-2xl); }
h3 { font-size: var(--t-xl); }
h4 { font-size: var(--t-lg); font-family: var(--font-sans); font-weight: 650; }

p { margin: 0 0 var(--s-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-dk); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }

img, svg, video { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 var(--s-4); padding-left: 1.3em; }
li + li { margin-top: var(--s-2); }

blockquote {
  margin: var(--s-6) 0;
  padding: var(--s-2) 0 var(--s-2) var(--s-5);
  border-left: 3px solid var(--brand);
  font-family: var(--font-head);
  font-size: var(--t-lg);
  color: var(--ink-2);
}

hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-7) 0; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}

::selection { background: var(--brand-lt); color: var(--brand-dk); }

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 999;
  background: var(--ink); color: #fff; padding: var(--s-3) var(--s-5);
  border-radius: var(--radius); text-decoration: none; font-weight: 600;
  transition: top 0.15s var(--ease);
}
.skip-link:focus { top: var(--s-4); color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--s-8); }
@media (min-width: 48rem) { .section { padding-block: var(--s-9); } }
.section--tight { padding-block: var(--s-7); }
.section--paper2 { background: var(--paper-2); }
.section--brand { background: var(--brand); color: #fff; }
.section--ink { background: var(--ink); color: #fff; }

.section--brand h2, .section--ink h2,
.section--brand h3, .section--ink h3 { color: #fff; }
.section--brand a, .section--ink a { color: #fff; }

.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

.stack > * + * { margin-top: var(--s-4); }
.stack--lg > * + * { margin-top: var(--s-6); }

.cluster { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

/* ---------- Section heading ---------- */
.section-head { max-width: 48rem; margin-bottom: var(--s-7); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s-3);
}
.section--brand .eyebrow, .section--ink .eyebrow { color: #9EC2EE; }

.lede { font-size: var(--t-lg); color: var(--ink-2); }
.section--brand .lede, .section--ink .lede { color: rgb(255 255 255 / 0.85); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 0.8em 1.6em;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font: inherit; font-weight: 600; font-size: var(--t-sm);
  text-decoration: none; cursor: pointer;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease),
              border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dk); color: #fff; }

.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dk); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--paper-2); color: var(--ink); border-color: var(--ink-3); }

.btn--on-dark { background: #fff; color: var(--brand-dk); }
.btn--on-dark:hover { background: var(--brand-lt); color: var(--brand-dk); }

.btn--ghost-on-dark { background: transparent; color: #fff; border-color: rgb(255 255 255 / 0.45); }
.btn--ghost-on-dark:hover { background: rgb(255 255 255 / 0.12); color: #fff; }

.btn--lg { font-size: var(--t-base); padding: 0.95em 2em; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: 600; font-size: var(--t-sm); text-decoration: none;
}
.link-arrow::after { content: "→"; transition: transform 0.15s var(--ease); }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.header-bar { display: flex; align-items: center; gap: var(--s-5); min-height: 4.5rem; }

.brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand__mark { width: 2.5rem; height: 2.5rem; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-head); font-weight: 650; font-size: 1.0625rem; letter-spacing: -0.01em; }
.brand__sub { font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

/* The Foundation's own logo is a wide lockup; cap it by height so the header bar
   stays a consistent depth whatever the uploaded file's dimensions are. */
.custom-logo-link { display: block; line-height: 0; }
.custom-logo { height: 2.75rem; width: auto; max-width: min(15rem, 52vw); object-fit: contain; }
@media (min-width: 48rem) { .custom-logo { height: 3rem; max-width: 18rem; } }
.site-footer .custom-logo { filter: brightness(0) invert(1); opacity: 0.9; }

.nav-toggle {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.55rem 0.8rem; font: inherit; font-size: var(--t-sm); font-weight: 600; cursor: pointer;
}
@media (min-width: 62rem) { .nav-toggle { display: none; } }

.primary-nav { margin-left: auto; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; }

@media (max-width: 61.999rem) {
  .primary-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    padding: var(--s-4) var(--gutter) var(--s-6);
    max-height: calc(100vh - 4.5rem); overflow-y: auto;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav > ul > li { border-bottom: 1px solid var(--line-soft); }
  .primary-nav > ul > li:last-child { border-bottom: 0; }
  .primary-nav a { display: block; padding: var(--s-3) 0; text-decoration: none; color: var(--ink); font-weight: 600; }
  .primary-nav .sub-menu { padding-left: var(--s-4); padding-bottom: var(--s-2); }
  .primary-nav .sub-menu a { font-weight: 500; color: var(--ink-2); padding: var(--s-2) 0; }
  .primary-nav li + li { margin-top: 0; }
}

@media (min-width: 62rem) {
  .primary-nav > ul { display: flex; align-items: center; gap: var(--s-1); }
  .primary-nav > ul > li { position: relative; margin: 0; }
  .primary-nav > ul > li > a {
    display: block; padding: 0.55rem 0.7rem; border-radius: var(--radius);
    text-decoration: none; color: var(--ink); font-weight: 550; font-size: var(--t-sm);
    white-space: nowrap;
  }
  .primary-nav > ul > li > a:hover { background: var(--paper-2); color: var(--brand-dk); }
  .primary-nav .current-menu-item > a,
  .primary-nav .current-menu-ancestor > a { color: var(--brand); }

  .primary-nav .menu-item-has-children > a::after { content: " ⌄"; font-size: 0.8em; opacity: 0.6; }

  .primary-nav .sub-menu {
    position: absolute; top: calc(100% + 0.35rem); left: 0; min-width: 14rem;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-2); padding: var(--s-2);
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
  }
  .primary-nav li:hover > .sub-menu,
  .primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
  .primary-nav .sub-menu li { margin: 0; }
  .primary-nav .sub-menu a {
    display: block; padding: var(--s-2) var(--s-3); border-radius: 6px;
    text-decoration: none; color: var(--ink-2); font-size: var(--t-sm);
  }
  .primary-nav .sub-menu a:hover { background: var(--brand-lt); color: var(--brand-dk); }
}

.header-cta { display: none; }
@media (min-width: 62rem) { .header-cta { display: inline-flex; margin-left: var(--s-3); } }

/* ---------- Language switcher ---------- */
.lang-switch {
  display: flex; align-items: center; gap: 1px;
  margin-left: var(--s-3);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 2px;
  flex-shrink: 0;
}
.lang-switch__item {
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: var(--t-xs);
  font-weight: 650;
  text-decoration: none;
  color: var(--ink-3);
  white-space: nowrap;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}
.lang-switch__item:hover { color: var(--brand-dk); }
.lang-switch__item.is-current { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-1); }
/* Bangla glyphs need the Bengali face and a touch more room */
.lang-switch__item[lang="bn_BD"] { font-family: var(--font-bn); padding-block: 0.15rem; }

/* On phones the switcher sits between the logo and the menu button */
@media (max-width: 61.999rem) {
  .lang-switch { margin-left: auto; }
  .nav-toggle { margin-left: var(--s-2); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #002350 0%, #00408F 55%, #0B57B8 100%);
  background-color: var(--brand-dk);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  /* A wash of the logo's green at the foot, and light from the top right. Both are very
     low opacity — they should register as warmth, not as a second colour. */
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgb(255 255 255 / 0.12), transparent 60%),
    radial-gradient(40rem 24rem at 0% 110%, rgb(80 160 0 / 0.20), transparent 65%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; padding-block: var(--s-8) var(--s-9); }
@media (min-width: 48rem) { .hero__inner { padding-block: var(--s-9) var(--s-10); } }

.hero__content { max-width: 40rem; }
.hero h1 { font-size: var(--t-4xl); color: #fff; margin-bottom: var(--s-5); }
.hero__lede { font-size: var(--t-lg); color: rgb(255 255 255 / 0.88); margin-bottom: var(--s-6); max-width: 34rem; }
.hero .eyebrow { color: #9EC2EE; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ---------- Cards ---------- */
.card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}
.card:hover { border-color: var(--brand); box-shadow: var(--shadow-2); transform: translateY(-2px); }

.card__media { aspect-ratio: 16 / 10; background: var(--paper-3); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--placeholder {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-lt), var(--paper-3));
  color: var(--brand);
}

.card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; gap: var(--s-3); }
.card__title { font-size: var(--t-lg); margin: 0; }
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: var(--brand); }
.card__excerpt { color: var(--ink-2); font-size: var(--t-sm); margin: 0; flex: 1; }
.card__foot { margin-top: auto; padding-top: var(--s-2); }

.tag {
  display: inline-block; padding: 0.2em 0.7em;
  background: var(--brand-lt); color: var(--brand-dk);
  border-radius: var(--radius-pill);
  font-size: var(--t-xs); font-weight: 650; letter-spacing: 0.02em;
}
.tag--accent { background: var(--accent-lt); color: #8A4206; }

/* ---------- Event list ---------- */
.event-row {
  display: grid; gap: var(--s-4);
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line-soft);
}
.event-row:last-child { border-bottom: 0; }

.event-date {
  display: grid; place-items: center; align-content: center;
  width: 4.5rem; height: 4.5rem;
  background: var(--brand-lt); color: var(--brand-dk);
  border-radius: var(--radius); line-height: 1;
}
.event-date__day { font-family: var(--font-head); font-size: 1.5rem; font-weight: 650; }
.event-date__mon { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.event-date--tbc { background: var(--paper-3); color: var(--ink-3); }

.event-row__meta { font-size: var(--t-sm); color: var(--ink-3); display: flex; flex-wrap: wrap; gap: var(--s-4); }
.event-row h3 { margin-bottom: var(--s-2); font-size: var(--t-lg); }
.event-row h3 a { color: inherit; text-decoration: none; }
.event-row h3 a:hover { color: var(--brand); }

/* ---------- Stats ---------- */
.stat { text-align: center; padding: var(--s-5) var(--s-3); }
.stat__num { display: block; font-family: var(--font-head); font-size: var(--t-3xl); font-weight: 650; line-height: 1; color: var(--brand); }
.section--brand .stat__num, .section--ink .stat__num { color: #fff; }
.stat__label { display: block; margin-top: var(--s-2); font-size: var(--t-sm); color: var(--ink-2); }
.section--brand .stat__label, .section--ink .stat__label { color: rgb(255 255 255 / 0.8); }

/* An honest placeholder: visible to editors, never a fabricated number */
.stat--unset .stat__num { color: var(--ink-3); opacity: 0.45; }

/* ---------- Prose ---------- */
.prose { max-width: var(--wrap-narrow); }
.prose > * + * { margin-top: var(--s-4); }
.prose h2 { margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-6); }
.prose img { border-radius: var(--radius); }
.prose figure { margin: var(--s-6) 0; }
.prose figcaption { font-size: var(--t-sm); color: var(--ink-3); margin-top: var(--s-2); }

/* ---------- Page header ---------- */
.page-head { background: var(--paper-2); border-bottom: 1px solid var(--line-soft); padding-block: var(--s-7); }
.page-head h1 { margin-bottom: var(--s-3); }
.page-head .lede { max-width: 42rem; }

.breadcrumbs { font-size: var(--t-sm); color: var(--ink-3); margin-bottom: var(--s-4); }
.breadcrumbs a { color: var(--ink-3); }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs span + span::before { content: " / "; opacity: 0.5; }

/* ---------- Callout / CTA band ---------- */
.callout {
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  background: var(--brand);
  color: #fff;
  display: grid; gap: var(--s-5);
}
@media (min-width: 48rem) {
  .callout { grid-template-columns: 1fr auto; align-items: center; padding: var(--s-8); }
}
.callout h2 { color: #fff; margin-bottom: var(--s-3); }
.callout p { color: rgb(255 255 255 / 0.88); margin: 0; max-width: 40rem; }

/* ---------- Editor note (admin-only guidance) ---------- */
.editor-note {
  border: 1px dashed var(--accent);
  background: var(--accent-lt);
  color: #6B3405;
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-5);
  font-size: var(--t-sm);
}
.editor-note strong { display: block; margin-bottom: var(--s-1); }

/* ---------- Forms ---------- */
label { display: block; font-weight: 600; font-size: var(--t-sm); margin-bottom: var(--s-2); }
input[type=text], input[type=email], input[type=tel], input[type=search], input[type=number], textarea, select {
  width: 100%; padding: 0.7em 0.9em;
  border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; color: var(--ink); background: var(--paper);
}
input:focus, textarea:focus, select:focus { border-color: var(--brand); }
textarea { min-height: 9rem; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgb(255 255 255 / 0.72); padding-block: var(--s-8) var(--s-5); margin-top: var(--s-8); }
.site-footer a { color: rgb(255 255 255 / 0.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer h3 { color: #fff; font-family: var(--font-sans); font-size: var(--t-sm); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--s-4); }

.footer-grid { display: grid; gap: var(--s-7); grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li + li { margin-top: var(--s-2); }

.footer-brand .brand__name, .footer-brand .brand__sub { color: #fff; }
.footer-about { font-size: var(--t-sm); margin-top: var(--s-4); max-width: 24rem; }

.footer-bottom {
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid rgb(255 255 255 / 0.12);
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between;
  font-size: var(--t-sm);
}

.social { display: flex; gap: var(--s-3); }
.social a {
  display: grid; place-items: center; width: 2.25rem; height: 2.25rem;
  border: 1px solid rgb(255 255 255 / 0.2); border-radius: var(--radius-pill);
}
.social a:hover { background: rgb(255 255 255 / 0.1); border-color: rgb(255 255 255 / 0.4); }
.social svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: var(--s-2); flex-wrap: wrap; justify-content: center; margin-top: var(--s-7); }
.pagination .page-numbers {
  display: grid; place-items: center; min-width: 2.5rem; height: 2.5rem; padding: 0 0.6rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: var(--ink-2); font-size: var(--t-sm); font-weight: 600;
}
.pagination .page-numbers:hover { border-color: var(--brand); color: var(--brand); }
.pagination .current { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-3); }
.small { font-size: var(--t-sm); }
