/* ============================================================
   SODP — Data-forward design system
   Inter (UI) + IBM Plex Mono (data, eyebrows, IDs)
   ============================================================ */

:root {
  /* SODP brand */
  --indigo-900: #1B1960;
  --indigo-700: #2E2B8E;
  --indigo-500: #5A54CF;
  --indigo-300: #8B86E0;
  --indigo-100: #E8E6FA;
  --indigo-50:  #F4F3FC;

  /* Topic accents (data-forward — categorical) */
  --topic-ai:    #5A54CF;     /* indigo */
  --topic-impl:  #2D7C50;     /* emerald */
  --topic-rsch:  #3961A8;     /* blue */
  --topic-eth:   #8E5B0A;     /* amber */
  --topic-eq:    #B23A6B;     /* magenta */
  --topic-edu:   #2B3047;     /* ink */

  /* Neutrals */
  --ink:       #0F1226;
  --ink-2:     #2B3047;
  --ink-3:     #5A6079;
  --ink-4:     #8C92A8;
  --rule:      #ECEDF2;
  --rule-2:    #DDDFE9;
  --bg:        #FFFFFF;
  --bg-soft:   #F8F8FB;
  --bg-zebra:  #FAFAFC;
  --bg-card:   #FFFFFF;

  /* Type families */
  --type-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --type-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--type-sans);
  font-feature-settings: "ss01", "cv11", "cv02";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }

/* ── Type scale (sans only) ─────────────────────────────── */

.t-display { font-size: clamp(40px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -0.028em; font-weight: 600; }
.t-h1      { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -0.022em; font-weight: 600; }
.t-h2      { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.18; letter-spacing: -0.018em; font-weight: 600; }
.t-h3      { font-size: 19px; line-height: 1.3; letter-spacing: -0.012em; font-weight: 600; }
.t-h4      { font-size: 15px; line-height: 1.4; letter-spacing: -0.005em; font-weight: 600; }

.lede      { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.6; color: var(--ink-2); font-weight: 400; }
.body      { font-size: 15.5px; line-height: 1.65; color: var(--ink-2); }
.body-sm   { font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.caption   { font-size: 12.5px; line-height: 1.5; color: var(--ink-3); }

/* Mono — used wherever data, IDs, dates, technical labels appear */
.mono      { font-family: var(--type-mono); font-feature-settings: "zero", "ss02"; }
.mono-stat { font-family: var(--type-mono); font-feature-settings: "zero"; font-variant-numeric: tabular-nums; }

.eyebrow {
  font-family: var(--type-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-500);
}
.eyebrow-ink { color: var(--ink-3); }

/* ── Layout ─────────────────────────────────────────────── */

.wrap        { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px;  margin: 0 auto; padding: 0 32px; }

.rule { height: 1px; background: var(--rule); border: 0; }
.rule-thick { height: 4px; background: var(--indigo-500); border: 0; width: 56px; }

/* Section header — eyebrow + thick rule + title */
.section-head {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head .head-l { display: flex; align-items: center; gap: 14px; }
.section-head .num {
  font-family: var(--type-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-4); font-weight: 500;
}

/* ── Navigation ─────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand img { height: 36px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--indigo-500); background: var(--indigo-50); }
.nav-cta {
  margin-left: 10px;
  padding: 9px 18px;
  background: var(--indigo-500);
  color: white !important;
  border-radius: 6px;
  font-size: 13.5px; font-weight: 600;
  transition: background .15s;
}
.nav-cta:hover { background: var(--indigo-700); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid var(--rule-2);
  border-radius: 6px;
  background: white;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink-2);
  transition: transform .15s, opacity .15s;
}
.nav-toggle[data-open="true"] span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.nav-toggle[data-open="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[data-open="true"] span:nth-child(3) { transform: translateY(-2.75px) rotate(-45deg); }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--rule);
  background: white;
  padding: 12px 32px 18px;
}
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile a.active { color: var(--indigo-500); }
.nav-mobile a.cta {
  margin-top: 14px;
  padding: 12px 18px;
  background: var(--indigo-500);
  color: white;
  border-radius: 6px;
  text-align: center;
  border-bottom: 0;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile[data-open="true"] { display: block; }
}

/* ── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px;
  font-size: 14px; font-weight: 600;
  border-radius: 6px; border: 1px solid transparent;
  cursor: pointer; transition: all .15s;
}
.btn-primary { background: var(--indigo-500); color: white; }
.btn-primary:hover { background: var(--indigo-700); }
.btn-ghost { background: white; color: var(--ink); border-color: var(--rule-2); }
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-dark { background: var(--indigo-900); color: white; }
.btn-dark:hover { background: var(--indigo-700); }
.btn-onDark { background: white; color: var(--indigo-900); }
.btn-onDark:hover { background: var(--indigo-100); }

.link {
  font-family: var(--type-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--indigo-500);
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
  padding-bottom: 2px;
}
.link:hover { border-bottom-color: var(--indigo-500); }

/* ── Tag / pill (mono, data-forward) ────────────────────── */

.tag {
  display: inline-block;
  font-family: var(--type-mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--indigo-50);
  color: var(--indigo-500);
  white-space: nowrap;
}
.tag-neutral { background: var(--bg-soft); color: var(--ink-3); }
.tag-blue    { background: #EFF4FB; color: var(--topic-rsch); }
.tag-violet  { background: var(--indigo-50); color: var(--topic-ai); }
.tag-emerald { background: #ECF5EF; color: var(--topic-impl); }
.tag-amber   { background: #FAF3E5; color: var(--topic-eth); }
.tag-magenta { background: #FBEAF1; color: var(--topic-eq); }
.tag-ink     { background: #ECEDF2; color: var(--topic-edu); }

/* ── Card ───────────────────────────────────────────────── */

.card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 24px;
  transition: border-color .18s, box-shadow .18s;
}
.card:hover { border-color: var(--rule-2); box-shadow: 0 1px 2px rgba(15,18,38,0.04); }

/* ── Form fields ────────────────────────────────────────── */

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--type-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  background: white;
  border: 1px solid var(--rule-2);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14.5px; font-family: inherit; color: var(--ink);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 3px var(--indigo-50);
}

/* ── Webinar posters (typographic) ──────────────────────── */

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 960px) { .webinar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .webinar-grid { grid-template-columns: 1fr; } }

.webinar-poster {
  background: white;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  position: relative;
  transition: background .18s;
  color: var(--ink);
}
.webinar-poster:hover { background: var(--bg-soft); }
.webinar-poster .meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--type-mono);
  font-size: 10.5px; letter-spacing: 0.06em;
  color: var(--ink-3); text-transform: uppercase;
}
.webinar-poster .id {
  color: var(--ink-4); font-weight: 500;
}
.webinar-poster .title {
  flex: 1;
  font-size: 17px; font-weight: 600;
  color: var(--ink); line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.webinar-poster .speaker {
  font-family: var(--type-mono);
  font-size: 11px; color: var(--ink-3);
  line-height: 1.5; letter-spacing: 0.02em;
}
.webinar-poster .speaker strong { color: var(--ink-2); font-weight: 500; }
.webinar-poster .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-family: var(--type-mono);
  font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo-500);
  font-weight: 500;
}

/* Inverted poster — for upcoming/featured */
.webinar-poster.dark {
  background: var(--indigo-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.webinar-poster.dark::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(139,134,224,0.22), transparent 55%);
  pointer-events: none;
}
.webinar-poster.dark > * { position: relative; }
.webinar-poster.dark .meta-top,
.webinar-poster.dark .id { color: rgba(255,255,255,0.55); }
.webinar-poster.dark .title { color: white; }
.webinar-poster.dark .speaker { color: rgba(255,255,255,0.7); }
.webinar-poster.dark .speaker strong { color: white; }
.webinar-poster.dark .footer { color: var(--indigo-300); border-top-color: rgba(255,255,255,0.12); }

/* Topic accent stripe (left edge) */
.webinar-poster .topic-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--indigo-500);
}
.webinar-poster.t-ai   .topic-stripe { background: var(--topic-ai); }
.webinar-poster.t-impl .topic-stripe { background: var(--topic-impl); }
.webinar-poster.t-rsch .topic-stripe { background: var(--topic-rsch); }
.webinar-poster.t-eth  .topic-stripe { background: var(--topic-eth); }
.webinar-poster.t-eq   .topic-stripe { background: var(--topic-eq); }
.webinar-poster.t-edu  .topic-stripe { background: var(--topic-edu); }

/* ── Data table (tabular zebra) ─────────────────────────── */

.data-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--ink);
  font-size: 14px;
}
.data-table th, .data-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.data-table th {
  font-family: var(--type-mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
  background: white;
}
.data-table tbody tr:nth-child(odd) td { background: var(--bg-zebra); }
.data-table tbody tr:hover td { background: var(--indigo-50); }
.data-table .col-mono { font-family: var(--type-mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.02em; }
.data-table .col-num { font-variant-numeric: tabular-nums; text-align: right; }

/* ── Stat block — big mono numbers ──────────────────────── */

.stat-row {
  display: grid;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.stat-cell {
  padding: 24px 28px;
  background: white;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .num {
  font-family: var(--type-mono);
  font-feature-settings: "zero", "ss02";
  font-variant-numeric: tabular-nums;
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 500;
  color: var(--indigo-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-cell .label {
  font-family: var(--type-mono);
  font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 10px;
}
.stat-cell .delta {
  font-family: var(--type-mono);
  font-size: 11px; color: var(--topic-impl);
  letter-spacing: 0.02em; margin-top: 4px;
}

/* Color-blocked dark stat row variant */
.stat-row.dark { border: 0; background: var(--indigo-900); }
.stat-row.dark .stat-cell { background: transparent; border-right-color: rgba(255,255,255,0.12); }
.stat-row.dark .stat-cell .num { color: white; }
.stat-row.dark .stat-cell .label { color: var(--indigo-300); }

/* Vertical stat list (sidebar usage in hero) */
.stat-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--ink);
}
.stat-list .row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.stat-list .row .num {
  font-family: var(--type-mono);
  font-feature-settings: "zero", "ss02";
  font-variant-numeric: tabular-nums;
  font-size: 22px; font-weight: 500;
  color: var(--indigo-900);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat-list .row .label {
  font-family: var(--type-mono);
  font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
}
.stat-list .row .delta {
  font-family: var(--type-mono);
  font-size: 10.5px;
  color: var(--topic-impl);
  letter-spacing: 0.04em;
  margin-left: 8px;
}

/* Featured single poster — larger than grid posters */
.webinar-poster.featured {
  min-height: 460px;
  padding: 32px 30px 28px;
  gap: 20px;
}
.webinar-poster.featured .title {
  font-size: 26px;
  letter-spacing: -0.018em;
  line-height: 1.18;
}
.webinar-poster.featured .speaker { font-size: 12px; }
.webinar-poster.featured .footer { padding-top: 16px; font-size: 11px; }

/* ── Portrait grid (About) ──────────────────────────────── */

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 960px) { .portrait-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .portrait-grid { grid-template-columns: repeat(2, 1fr); } }

.portrait { background: white; transition: background .18s; }
.portrait:hover { background: var(--bg-soft); }
.portrait .img-wrap {
  aspect-ratio: 1/1;
  background: var(--indigo-50);
  overflow: hidden;
  position: relative;
}
.portrait .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  filter: grayscale(100%);
  transition: filter .25s;
}
.portrait:hover .img-wrap img { filter: grayscale(0%); }
.portrait .img-wrap .ini {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--type-mono);
  font-size: 28px; font-weight: 500;
  color: var(--indigo-300);
  letter-spacing: 0.04em;
}
.portrait .meta {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--rule);
}
.portrait .meta .name {
  font-size: 14px; font-weight: 600;
  color: var(--ink); line-height: 1.3;
}
.portrait .meta .aff {
  font-family: var(--type-mono);
  font-size: 10.5px; line-height: 1.45;
  color: var(--ink-3); margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ── Map block (interactive map will live here) ─────────── */

.map-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px;
}

/* ── Footer ─────────────────────────────────────────────── */

footer.foot {
  background: var(--indigo-900);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 28px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
footer.foot::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(139,134,224,0.15), transparent 50%);
  pointer-events: none;
}
.foot .wrap { padding: 0 32px; position: relative; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }

.foot h4 {
  font-family: var(--type-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color .12s; }
.foot a:hover { color: white; }
.foot-brand .name {
  font-size: 18px; font-weight: 600; color: white; line-height: 1.2;
  letter-spacing: -0.012em;
}
.foot-brand p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.7); max-width: 400px; margin: 14px 0 0; }
.foot-bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: var(--type-mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}

/* ── Responsive grid utilities ──────────────────────────── */

/* Hero: text + featured webinar (2-col → stack on tablet) */
.grid-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .grid-hero { grid-template-columns: 1fr; gap: 40px; }
}

/* Generic 50/50 split (Mission/Vision, Network) */
.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 880px) {
  .grid-split { grid-template-columns: 1fr; }
}

/* CTA dark — copy + right-align CTA → stack */
.grid-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 760px) {
  .grid-cta { grid-template-columns: 1fr; gap: 32px; }
  .grid-cta .cta-actions { justify-content: flex-start !important; }
}

/* Apply form: main + sidebar */
.grid-apply {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .grid-apply { grid-template-columns: 1fr; gap: 32px; }
}

/* Network: map column + partner table */
.grid-network {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .grid-network { grid-template-columns: 1fr; gap: 32px; }
}

/* Section intro: small label col + wide body */
.grid-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 760px) {
  .grid-intro { grid-template-columns: 1fr; gap: 16px; }
}

/* Stat row variants */
.stat-row-5 { grid-template-columns: repeat(5, 1fr); }
.stat-row-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .stat-row-5 { grid-template-columns: repeat(3, 1fr); }
  .stat-row-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-row .stat-cell { border-bottom: 1px solid var(--rule); }
  .stat-row .stat-cell:nth-last-child(-n+1) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .stat-row-5, .stat-row-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .stat-row-5, .stat-row-4 { grid-template-columns: 1fr; }
  .stat-row .stat-cell { border-right: 0; }
}

/* Tables: horizontal scroll on small */
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll .data-table { min-width: 720px; }

/* Mobile padding adjustments */
@media (max-width: 600px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
  .foot .wrap { padding: 0 20px; }
  .nav-mobile { padding: 12px 20px 18px; }
  .webinar-poster { min-height: 200px; padding: 20px; }
  .webinar-poster.featured { min-height: 380px; padding: 24px; }
  .webinar-poster.featured .title { font-size: 22px; }
  .data-table th, .data-table td { padding: 12px 14px; }
  footer.foot { padding: 56px 0 24px; }
}

/* ── Utility ────────────────────────────────────────────── */

.muted { color: var(--ink-3); }
.center { text-align: center; }
.flex { display: flex; }
