/* Mackay Whale Watching — redesign concept
   Palette: deep ocean navy / sea-mist white / kelp gold */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/fraunces-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/fraunces-latin-italic.woff2') format('woff2');
}

:root {
  --abyss: #06121b;
  --ink: #0b1d2a;
  --ink-soft: #12293a;
  --mist: #f4f7f8;
  --foam: #ffffff;
  --gold: #c9a227;
  --gold-bright: #e6bf45;
  --text-dark: #16333f;
  --text-mute: #5b7482;
  --text-on-dark: #e9f0f2;
  --text-on-dark-mute: #9db4bf;
  --line-dark: rgba(233, 240, 242, 0.14);
  --line-light: rgba(22, 51, 63, 0.14);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(6, 18, 27, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  background: var(--abyss);
  color: var(--text-on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }

/* ---------- type ---------- */
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 1rem; }
.light .kicker { color: #8a6a0d; }
.section-lede { font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 38em; }
.light .section-lede { color: var(--text-mute); }
.dark .section-lede { color: var(--text-on-dark-mute); }

section { padding: clamp(4rem, 9vw, 7rem) 0; }
.light { background: var(--mist); color: var(--text-dark); }
.dark { background: var(--ink); color: var(--text-on-dark); }
.darker { background: var(--abyss); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- header ---------- */
.site-head {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 1.1rem 0;
}
.site-head .wrap { display: flex; align-items: center; gap: 1.5rem; }
.brand { text-decoration: none; line-height: 1.15; }
.brand strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  display: block;
  color: #fff;
}
.brand span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.site-nav a:hover { color: var(--gold-bright); }
.site-nav .nav-book {
  background: var(--gold);
  color: var(--abyss);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
}
.site-nav .nav-book:hover { background: var(--gold-bright); color: var(--abyss); }
@media (max-width: 820px) { .site-nav a:not(.nav-book) { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(94svh, 60rem);
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(2.5rem, 6vw, 5rem);
  isolation: isolate;
}
.hero-img { position: absolute; inset: 0; z-index: -2; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 42%; }
@media (max-width: 640px) {
  .hero .hero-img img { object-position: 38% 40%; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(6, 18, 27, 0.55) 0%, rgba(6, 18, 27, 0) 30%),
    linear-gradient(to top, rgba(6, 18, 27, 0.92) 0%, rgba(6, 18, 27, 0.35) 45%, rgba(6, 18, 27, 0) 70%);
}
.hero h1 {
  font-size: clamp(2.35rem, 6.2vw, 4.4rem);
  max-width: 13.5em;
  color: #fff;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero-sub {
  margin-top: 1.1rem;
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: var(--text-on-dark-mute);
}
.hero-sub b { color: var(--text-on-dark); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero-trust {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-on-dark-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
}
.hero-trust .star { color: var(--gold-bright); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.7rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold); color: var(--abyss); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; background: rgba(6, 18, 27, 0.25); }
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-line { border-color: var(--line-light); color: var(--text-dark); background: transparent; }
.btn-line:hover { border-color: var(--gold); color: var(--text-dark); }

/* ---------- booking ---------- */
.booking { position: relative; }
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.booking-intro { position: sticky; top: 2rem; }
.booking-phone { margin-top: 1.6rem; font-size: 0.95rem; color: var(--text-on-dark-mute); }
.booking-phone a { color: var(--text-on-dark); font-weight: 700; text-decoration-color: var(--gold); }

.panel {
  background: var(--foam);
  color: var(--text-dark);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.panel h3 { font-size: 1.3rem; margin-bottom: 1.2rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.panel h3 small { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; color: var(--text-mute); }

.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 1.4rem 0 0.6rem;
}
.field-label:first-of-type { margin-top: 0; }

.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.seg button {
  font: inherit;
  font-weight: 600;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--line-light);
  background: var(--foam);
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.seg button small { display: block; font-weight: 500; font-size: 0.8rem; color: var(--text-mute); }
.seg button[aria-pressed='true'] { border-color: var(--gold); background: #fdf8ea; }
.seg button[aria-pressed='true'] small { color: #8a6d13; }

.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.cal-head strong { font-size: 0.98rem; }
.cal-nav {
  font: inherit;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid var(--line-light);
  background: none;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 700;
}
.cal-nav:hover:not(:disabled) { border-color: var(--gold); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; }
.cal-grid .dow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  padding-bottom: 0.3rem;
}
.cal-grid button {
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  aspect-ratio: 1;
  border-radius: 10px;
  border: none;
  background: none;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
}
.cal-grid button.avail { background: #eef4f0; color: #1c5c3f; }
.cal-grid button.avail::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2e8b60;
  transform: translateX(-50%);
}
.cal-grid button.avail:hover { background: #dcebe2; }
.cal-grid button:disabled { color: #b9c6cd; cursor: default; background: none; }
.cal-grid button.sel { background: var(--gold) !important; color: var(--abyss); }
.cal-grid button.sel::after { background: var(--abyss); }
.cal-note { font-size: 0.8rem; color: var(--text-mute); margin-top: 0.55rem; }
.cal-note .dotg { color: #2e8b60; }

.stepper { display: flex; align-items: center; gap: 1rem; }
.stepper button {
  font: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 2px solid var(--line-light);
  background: none;
  color: var(--text-dark);
  cursor: pointer;
}
.stepper button:hover:not(:disabled) { border-color: var(--gold); }
.stepper button:disabled { opacity: 0.3; cursor: default; }
.stepper output { font-weight: 700; font-size: 1.1rem; min-width: 5.5rem; text-align: center; }

.book-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 2px solid var(--line-light);
  margin-top: 1.5rem;
  padding-top: 1.1rem;
}
.book-total .sum { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.book-total small { display: block; font-size: 0.78rem; color: var(--text-mute); font-weight: 500; }
.panel .btn { width: 100%; margin-top: 1.2rem; font-size: 1.05rem; padding: 1rem; }
.panel-foot { margin-top: 0.9rem; font-size: 0.8rem; color: var(--text-mute); text-align: center; }

@media (max-width: 860px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
}

/* ---------- reports strip ---------- */
.strip-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: 2.2rem; }
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .card-row { grid-template-columns: 1fr; } }

.report-card {
  background: var(--foam);
  color: var(--text-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 34px -18px rgba(6, 18, 27, 0.35);
  display: flex;
  flex-direction: column;
}
.dark .report-card, .darker .report-card { background: var(--ink-soft); color: var(--text-on-dark); box-shadow: var(--shadow); }
.report-card figure { aspect-ratio: 3 / 2; overflow: hidden; }
.report-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.report-card:hover figure img { transform: scale(1.04); }
.report-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.report-date { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #8a6a0d; }
.dark .report-date, .darker .report-date { color: var(--gold-bright); }
.report-quote { font-family: var(--serif); font-size: 1.08rem; line-height: 1.45; font-weight: 500; }
.report-quote em { color: inherit; }
.report-by { font-size: 0.85rem; color: var(--text-mute); margin-top: auto; }
.dark .report-by, .darker .report-by { color: var(--text-on-dark-mute); }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 51, 63, 0.07);
  color: var(--text-dark);
}
.dark .tag, .darker .tag { background: rgba(233, 240, 242, 0.1); color: var(--text-on-dark); }

/* ---------- tours ---------- */
.tour-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2.4rem; }
@media (max-width: 860px) { .tour-row { grid-template-columns: 1fr; } }
.tour-card {
  background: var(--foam);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 12px 40px -20px rgba(6, 18, 27, 0.4);
  display: flex;
  flex-direction: column;
}
.tour-card figure { aspect-ratio: 16 / 9; overflow: hidden; }
.tour-card figure img { width: 100%; height: 100%; object-fit: cover; }
.tour-body { padding: 1.7rem 1.8rem 1.9rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.tour-body h3 { font-size: 1.55rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.tour-price { font-family: var(--sans); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); white-space: nowrap; }
.tour-price b { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.tour-price small { display: block; text-align: right; font-size: 0.72rem; font-weight: 600; color: var(--text-mute); }
.tour-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tour-facts li {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-light);
  color: var(--text-mute);
}
.tour-body p { color: var(--text-mute); font-size: 0.97rem; }
.tour-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- boat ---------- */
.boat-media { border-radius: calc(var(--radius) + 6px); overflow: hidden; box-shadow: var(--shadow); margin-top: 2.6rem; }
.boat-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 860px) { .boat-grid { grid-template-columns: 1fr; } }
.boat-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.4rem; }
@media (max-width: 700px) { .boat-stats { grid-template-columns: repeat(2, 1fr); } }
.stat { border-top: 2px solid var(--line-dark); padding-top: 0.9rem; }
.stat b { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; display: block; color: #fff; }
.stat span { font-size: 0.85rem; color: var(--text-on-dark-mute); }

/* ---------- story ---------- */
.story-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }
.story-grid figure { border-radius: calc(var(--radius) + 6px); overflow: hidden; box-shadow: 0 16px 46px -20px rgba(6, 18, 27, 0.4); }
.story-grid figcaption { font-size: 0.85rem; color: var(--text-mute); padding: 0.8rem 0.2rem 0; }
.story-copy p { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--text-dark); max-width: 30em; }
.story-copy p + p { margin-top: 1.1rem; }
.story-copy .fine { font-size: 0.95rem; color: var(--text-mute); }

/* ---------- reviews ---------- */
.review-card {
  background: var(--foam);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 1.7rem 1.7rem 1.6rem;
  box-shadow: 0 10px 34px -18px rgba(6, 18, 27, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.15em; }
.review-card blockquote { font-family: var(--serif); font-size: 1.06rem; line-height: 1.5; font-weight: 500; }
.review-card figcaption { font-size: 0.85rem; color: var(--text-mute); margin-top: auto; }
.ta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--foam);
  color: var(--text-dark);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 8px 26px -14px rgba(6, 18, 27, 0.45);
}
.ta-badge .dot { width: 0.85rem; height: 0.85rem; border-radius: 50%; background: #00aa6c; }

/* ---------- practical ---------- */
.practical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 4vw, 3rem); margin-top: 2.6rem; }
@media (max-width: 860px) { .practical-grid { grid-template-columns: 1fr; } }
.practical-grid h3 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.practical-grid p, .practical-grid li { color: var(--text-on-dark-mute); font-size: 0.97rem; }
.practical-grid ul { list-style: none; display: grid; gap: 0.45rem; }
.practical-grid a { color: var(--text-on-dark); font-weight: 600; text-decoration-color: var(--gold); }
.practical-grid a:hover { color: var(--gold-bright); }

/* ---------- footer ---------- */
.site-foot { background: var(--abyss); border-top: 1px solid var(--line-dark); padding: 2.6rem 0 7rem; }
@media (min-width: 861px) { .site-foot { padding-bottom: 2.6rem; } }
.foot-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.foot-row p { font-size: 0.88rem; color: var(--text-on-dark-mute); }
.foot-row .concept-line a { color: var(--gold-bright); font-weight: 600; }

/* ---------- concept badge / sticky book ---------- */
.concept-badge {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 60;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(6, 18, 27, 0.85);
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.concept-badge b { color: var(--gold-bright); font-weight: 700; }
.concept-badge:hover { border-color: var(--gold); }

.sticky-book {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: none;
  box-shadow: 0 12px 30px -10px rgba(6, 18, 27, 0.7);
}
@media (max-width: 860px) {
  .sticky-book.show { display: inline-flex; }
}

/* ---------- modal ---------- */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(6, 18, 27, 0.72);
}
.modal-box {
  background: var(--foam);
  color: var(--text-dark);
  border-radius: calc(var(--radius) + 4px);
  max-width: 26rem;
  padding: 2rem 2rem 1.8rem;
  box-shadow: var(--shadow);
}
.modal-box h4 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 0.8rem; }
.modal-box p { font-size: 0.95rem; color: var(--text-mute); }
.modal-box p + p { margin-top: 0.7rem; }
.modal-box .btn { margin-top: 1.4rem; width: 100%; }

/* ---------- reports page ---------- */
.page-hero {
  position: relative;
  min-height: min(46svh, 30rem);
  display: flex;
  align-items: flex-end;
  padding: 6.5rem 0 2.8rem;
  isolation: isolate;
}
.page-hero .hero-img img { object-position: 50% 55%; }
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(6, 18, 27, 0.5) 0%, rgba(6, 18, 27, 0.15) 35%),
    linear-gradient(to top, rgba(6, 18, 27, 0.88) 0%, rgba(6, 18, 27, 0.4) 55%, rgba(6, 18, 27, 0.1) 100%);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; max-width: 15em; }
.filter-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 247, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-light);
  padding: 0.85rem 0;
}
.filter-bar .wrap { display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; }
.filter-bar .wrap::-webkit-scrollbar { display: none; }
.chip {
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-light);
  background: var(--foam);
  color: var(--text-dark);
  cursor: pointer;
}
.chip[aria-pressed='true'] { background: var(--ink); border-color: var(--ink); color: #fff; }
.feed { display: grid; gap: 1.6rem; }
.feed-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  background: var(--foam);
  color: var(--text-dark);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 10px 34px -18px rgba(6, 18, 27, 0.3);
}
.feed-card figure { min-height: 240px; }
.feed-card figure img { width: 100%; height: 100%; object-fit: cover; }
.feed-body { padding: 1.7rem 1.9rem; display: flex; flex-direction: column; gap: 0.9rem; }
.feed-body h2 { font-size: 1.45rem; }
.feed-body .report-quote { font-size: 1.02rem; font-weight: 400; color: var(--text-dark); }
.feed-card.hide { display: none; }
@media (max-width: 780px) {
  .feed-card { grid-template-columns: 1fr; }
  .feed-card figure { aspect-ratio: 16 / 10; min-height: 0; }
}
