/* ==========================================================================
   FBC Yoakum — layout, components & site chrome
   Built on the design tokens (styles.css). Ports the React primitives
   (Button, Card, Badge, Eyebrow, VerseBlock, EventCard, SermonCard) and the
   SiteChrome header/footer into plain CSS classes for server-rendered pages.
   ========================================================================== */

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--brand-primary); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: var(--fw-semibold);
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; color: #fff; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section { padding: var(--space-20) 0; }
.section--tight { padding: var(--space-12) 0; }
.stack > * + * { margin-top: var(--space-4); }

/* Inverted navy band: subtle dotted texture + soft cobalt glow (never loud) */
.section--ink {
  position: relative;
  overflow: hidden;
  background: var(--surface-ink);
  color: var(--cream-50);
}
.section--ink::before {
  content: "";
  position: absolute; inset: 0;
  opacity: .09;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 24px 24px;
}
.section--ink .glow {
  position: absolute; width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(78,132,212,.40), transparent 62%);
  top: -260px; right: -160px; pointer-events: none;
}
.section--ink > .container { position: relative; z-index: 2; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream-50); }

/* ---------- Eyebrow (uppercase label + short gold tick) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--brand-accent-ink);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brand-accent); }
.section--ink .eyebrow { color: var(--gold-500); }

/* ---------- Headings helpers ---------- */
.display-xl { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-display-xl); line-height: var(--lh-tight); }
.display-lg { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-display-lg); line-height: var(--lh-tight); }
.display-md { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-display-md); line-height: var(--lh-snug); }
.lead { font-size: var(--fs-body-lg); color: var(--text-body); max-width: var(--content-measure); line-height: var(--lh-normal); }
.section--ink .lead { color: rgba(255,255,255,.82); }

/* ---------- Button ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: var(--fs-body-sm); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  padding: 12px 22px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand-primary); color: var(--cream-50); }
.btn--primary:hover { background: var(--brand-primary-hover); color: var(--cream-50); }
.btn--gold { background: var(--gold-500); color: var(--text-on-gold); }
.btn--gold:hover { background: var(--gold-400); color: var(--text-on-gold); }
.btn--secondary { background: transparent; color: var(--brand-primary); border-color: var(--border-strong); }
.btn--secondary:hover { background: var(--surface-sky); color: var(--brand-primary); }
.btn--ghost-on-ink { background: transparent; color: var(--cream-50); border-color: var(--border-on-ink); }
.btn--ghost-on-ink:hover { background: rgba(255,255,255,.08); color: var(--cream-50); }

/* ---------- Card ---------- */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
a.card { display: block; text-decoration: none; color: inherit; }
a.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__body { padding: var(--space-5) var(--space-6); }
.card--accent-top { border-top: 4px solid var(--gold-500); }
.card--sky { background: var(--surface-sky); border-color: var(--blue-200); }
.card--ink { background: var(--surface-ink); color: var(--cream-50); border-color: transparent; }
.card__title { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-display-sm); color: var(--text-heading); }
.card--ink .card__title { color: var(--cream-50); }
.card__meta { font-size: var(--fs-body-sm); color: var(--text-muted); margin-top: 2px; }

/* ---------- Badge / pill ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-eyebrow); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill);
  background: var(--surface-sky); color: var(--brand-primary);
}
.badge--gold { background: var(--gold-100); color: var(--gold-700); }
.badge--green, .badge--live { background: var(--green-100); color: var(--green-600); }
.badge--blue { background: var(--surface-sky); color: var(--brand-primary); }
.badge--red { background: var(--red-100); color: var(--red-600); }
.badge--neutral { background: var(--cream-100); color: var(--stone-600); }

/* ---------- Verse block (italic serif + small-caps reference) ---------- */
.verse {
  font-family: var(--font-display); font-style: italic; font-weight: var(--fw-medium);
  font-size: var(--fs-title); color: var(--text-heading); line-height: var(--lh-snug);
}
.verse__ref {
  display: block; margin-top: var(--space-3);
  font-family: var(--font-body); font-style: normal; font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold); letter-spacing: var(--ls-caps); text-transform: uppercase;
  color: var(--brand-accent-ink); font-variant-caps: small-caps;
}
.section--ink .verse { color: rgba(255,255,255,.90); }
.section--ink .verse__ref { color: var(--gold-500); }

/* ---------- Grid ---------- */
.grid { display: grid; gap: var(--space-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

/* ==========================================================================
   Site chrome — sticky header (90% cream + blur) and navy footer
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,249,244,.90);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-header__logo img { height: 38px; width: auto; }
.site-nav { display: flex; align-items: center; gap: var(--space-6); }
.site-nav a {
  font-family: var(--font-body); font-size: var(--fs-body-sm); font-weight: var(--fw-semibold);
  color: var(--text-body); letter-spacing: .02em;
}
.site-nav a:hover { color: var(--brand-primary); }
.site-nav a.is-active { color: var(--brand-primary); }
.site-header__cta { display: flex; align-items: center; gap: var(--space-3); }

/* Hamburger toggle (hidden until the nav collapses) */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; margin: 0;
  background: transparent; border: none; cursor: pointer; color: var(--text-heading);
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle__bars { position: relative; display: block; width: 24px; height: 16px; }
.nav-toggle__bars span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform .25s var(--ease-out), opacity .2s var(--ease-out), top .25s var(--ease-out);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 7px; }
.nav-toggle__bars span:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Slide-down mobile menu */
.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  padding: var(--space-3) var(--space-5) var(--space-5);
  border-top: 1px solid var(--border-subtle);
  background: rgba(251,249,244,.98);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.mobile-nav.is-open { display: flex; animation: navDrop .22s var(--ease-out); }
@keyframes navDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-nav a {
  font-family: var(--font-body); font-size: 17px; font-weight: var(--fw-semibold);
  color: var(--text-heading); padding: 13px 6px; border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav a:hover, .mobile-nav a:active { color: var(--brand-primary); }
.mobile-nav a.is-active { color: var(--brand-primary); }
.mobile-nav__cta { margin-top: var(--space-4); border-bottom: none !important; text-align: center; }
.mobile-nav__cta:hover { color: #fff; }
body.nav-open { overflow: hidden; }

@media (max-width: 980px) {
  .site-nav, .site-header__cta .btn--secondary { display: none; }
  .nav-toggle { display: inline-flex; }
}

.site-footer { background: var(--surface-ink); color: rgba(255,255,255,.66); position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0; opacity: .07;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 24px 24px;
}
.site-footer__inner { position: relative; z-index: 2; padding-block: var(--space-16) var(--space-10); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-10); }
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr; gap: var(--space-8); } }
.site-footer img.footer-logo { height: 52px; width: auto; margin-bottom: var(--space-4); }
.site-footer h4 {
  font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--gold-500); margin-bottom: var(--space-3);
}
.site-footer a { color: rgba(255,255,255,.78); font-size: var(--fs-body-sm); display: block; padding: 3px 0; }
.site-footer a:hover { color: #fff; }
.site-footer .verse { color: var(--gold-400); font-size: var(--fs-body-lg); }
.site-footer__bar {
  position: relative; z-index: 2; border-top: 1px solid var(--border-on-ink);
  padding-block: var(--space-5); display: flex; justify-content: space-between;
  font-size: var(--fs-body-sm); color: rgba(255,255,255,.5);
}
@media (max-width: 600px) { .site-footer__bar { flex-direction: column; gap: var(--space-2); } }

/* ---------- Hero (home) ---------- */
.hero { text-align: center; padding-block: var(--space-24); }
.hero .est { font-size: var(--fs-eyebrow); font-weight: var(--fw-semibold); letter-spacing: .4em; text-transform: uppercase; color: var(--gold-500); margin-bottom: var(--space-3); }
.hero h1 { font-size: var(--fs-display-xl); margin: 0; }
.hero .loc { font-size: 13px; font-weight: var(--fw-semibold); letter-spacing: .42em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: var(--space-4); }
.hero .hero-cta { margin-top: var(--space-8); display: inline-flex; gap: var(--space-4); }
@media (max-width: 700px) { .hero h1 { font-size: 52px; } }

/* ---------- Forms ---------- */
.fbc-form { display: flex; flex-direction: column; gap: var(--space-4); }
.fbc-form label {
  display: flex; flex-direction: column; gap: var(--space-2);
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: var(--fs-body-sm); color: var(--text-heading);
}
.fbc-form input, .fbc-form textarea {
  width: 100%; box-sizing: border-box; font-family: var(--font-body); font-size: var(--fs-body);
  color: var(--text-heading); padding: 12px 14px; border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); background: var(--surface-card); outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.fbc-form input:focus, .fbc-form textarea:focus { border-color: var(--brand-primary); box-shadow: var(--shadow-ring); }
.fbc-form textarea { resize: vertical; }
.staff-photo { width: 100%; height: 236px; object-fit: cover; object-position: center 22%; border-radius: var(--radius-lg); margin-bottom: 14px; }

/* Contact info blocks */
.info-label { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--brand-accent-ink); margin-bottom: 6px; }
.info-value { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--text-heading); line-height: 1.3; white-space: pre-line; }

/* ---------- Filter pills ---------- */
.pill {
  display: inline-block; padding: 7px 16px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 13px; font-weight: var(--fw-semibold);
  color: var(--text-body); background: transparent; border: 1px solid var(--border-strong);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.pill:hover { background: var(--surface-sky); color: var(--brand-primary); }
.pill--active { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.pill--active:hover { color: #fff; background: var(--brand-primary-hover); }

/* ---------- Sermon cards / hero ---------- */
.sermon-card__art, .sermon-card__art-fallback { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); overflow: hidden; }
.sermon-card__art img { width: 100%; height: 100%; object-fit: cover; }
.sermon-card__art-fallback { display: flex; align-items: center; justify-content: center; }
.play { width: 56px; height: 56px; border-radius: 50%; border: 2px solid #fff; color: #fff; background: rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; font-size: 18px; }
/* Play glyph centered over a thumbnail image (vs. the flex-centered fallback) */
.play--over { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; width: 48px; height: 48px; font-size: 15px; background: rgba(0,0,0,.32); pointer-events: none; }
.sermon-card__art:hover .play--over { background: rgba(0,0,0,.5); }
.sermon-hero-art { position: relative; min-height: 280px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); overflow: hidden; }
.sermon-hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sermon-hero-art .play { position: relative; z-index: 2; width: 68px; height: 68px; }
@media (max-width: 760px) { .card .grid { grid-template-columns: 1fr !important; } .sermon-hero-art { min-height: 200px; } }
/* Any grid given explicit columns inline (page two-column layouts) stacks on phones. */
@media (max-width: 760px) { .grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; } }

/* ---------- Video embed (16:9) ---------- */
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; background: var(--blue-900); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.sermon-meta { display: flex; gap: var(--space-10); flex-wrap: wrap; margin-top: var(--space-8); padding-top: var(--space-6); border-top: 1px solid var(--border-subtle); }

/* ---------- Event rows ---------- */
.event-row {
  display: flex; align-items: center; gap: var(--space-5);
  padding: var(--space-4) var(--space-5); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); background: var(--surface-card); margin-bottom: var(--space-3);
  text-decoration: none; color: inherit;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.event-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-date {
  flex: none; width: 60px; text-align: center; border-radius: var(--radius-sm);
  padding: var(--space-2) 0; background: var(--surface-sky); color: var(--brand-primary);
}
.event-date--gold { background: var(--gold-100); color: var(--gold-700); }
.event-date--green { background: var(--green-100); color: var(--green-600); }
.event-date--red { background: var(--red-100); color: var(--red-600); }
.event-date--neutral { background: var(--cream-100); color: var(--stone-600); }
.event-date .dow { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.event-date .dom { display: block; font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1; }
.event-body { flex: 1; }
.event-title { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--text-heading); }
.event-meta { font-size: var(--fs-body-sm); color: var(--text-muted); margin-top: 2px; }
@media (max-width: 600px) { .event-row .badge { display: none; } }

/* Service-times strip */
.times { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 760px) { .times { grid-template-columns: 1fr; } }
.times .when { font-family: var(--font-display); font-size: var(--fs-title); color: var(--text-heading); }
.times .what { font-size: var(--fs-body-sm); color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   Hero slider (Swiper) — reusable StreamField block
   ============================================================ */
.hero-slider { position: relative; }
.hero-slider .swiper { width: 100%; height: 100%; }
.hero-slider--standard .swiper, .hero-slider--standard .hero-slide { height: clamp(460px, 72vh, 720px); }
.hero-slider--tall .swiper, .hero-slider--tall .hero-slide { height: clamp(520px, 86vh, 860px); }
.hero-slider--full .swiper, .hero-slider--full .hero-slide { height: calc(100vh - var(--header-h, 72px)); }

.hero-slider .hero-slide { position: relative; display: flex !important; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-800), var(--surface-ink)); }
.hero-slide__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/* Legibility overlay over the photo */
.hero-slide::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.hero-slide--ov-none::after  { background: none; }
.hero-slide--ov-light::after { background: linear-gradient(180deg, rgba(20,36,61,.18), rgba(20,36,61,.30)); }
.hero-slide--ov-medium::after{ background: linear-gradient(180deg, rgba(20,36,61,.34), rgba(20,36,61,.55)); }
.hero-slide--ov-dark::after  { background: linear-gradient(180deg, rgba(20,36,61,.55), rgba(20,36,61,.74)); }

.hero-slide__inner { position: relative; z-index: 2; width: 100%; color: var(--cream-50);
  display: flex; flex-direction: column; gap: var(--space-4); }
.hero-slide--center .hero-slide__inner { align-items: center; text-align: center; }
.hero-slide--left .hero-slide__inner   { align-items: flex-start; text-align: left; max-width: 60ch; }
.hero-slide__logo { height: clamp(96px, 11vw, 132px); width: auto; margin-bottom: var(--space-2); }
.hero-slide__eyebrow { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--gold-400); }
.hero-slide__heading { font-family: var(--font-display); font-weight: 600; color: var(--cream-50);
  font-size: clamp(36px, 5.4vw, 64px); line-height: 1.04; margin: 0; max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero-slide--center .hero-slide__heading { margin-left: auto; margin-right: auto; }
.hero-slide__text { font-size: var(--fs-body-lg); color: rgba(255,255,255,.88); max-width: 54ch; margin: 0;
  text-shadow: 0 1px 14px rgba(0,0,0,.30); }
.hero-slide__buttons { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-2); }
.hero-slide--center .hero-slide__buttons { justify-content: center; }

/* Ken Burns: slow zoom on the active slide's photo */
.hero-slider.is-kenburns .swiper-slide-active .hero-slide__img { animation: kenburns 14s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) {
  .hero-slider.is-kenburns .swiper-slide-active .hero-slide__img { animation: none; }
}

/* Swiper controls in brand colors */
.hero-slider .swiper-button-prev, .hero-slider .swiper-button-next { color: #fff; opacity: .85;
  --swiper-navigation-size: 30px; }
.hero-slider .swiper-button-prev:hover, .hero-slider .swiper-button-next:hover { opacity: 1; }
.hero-slider .swiper-pagination-bullet { background: #fff; opacity: .55; width: 9px; height: 9px; }
.hero-slider .swiper-pagination-bullet-active { background: var(--gold-500); opacity: 1; width: 22px; border-radius: 5px; }

@media (max-width: 600px) {
  .hero-slider .swiper-button-prev, .hero-slider .swiper-button-next { display: none; }
  .hero-slide__buttons .btn { flex: 1 1 auto; text-align: center; }
}

/* ---------- Facebook feed block ---------- */
.fb-feed .fb-post { display: flex; flex-direction: column; height: 100%; }
.fb-post__img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-muted); }
.fb-post__img img { width: 100%; height: 100%; object-fit: cover; }
.fb-post__meta { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold); letter-spacing: var(--ls-caps); text-transform: uppercase;
  color: var(--text-muted); margin-bottom: var(--space-3); }
.fb-post__meta .fb-ico { display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 5px; background: #1877F2; color: #fff;
  font-family: Georgia, serif; font-weight: 700; font-size: 13px; }
.fb-post__text { color: var(--text-body); font-size: var(--fs-body-sm); line-height: var(--lh-normal);
  margin: 0 0 var(--space-4); }
.fb-post__link { margin-top: auto; font-size: var(--fs-body-sm); font-weight: var(--fw-semibold);
  color: var(--text-link); }
