:root {
  --navy: #14242a;
  --navy-2: #1c333b;
  --yellow: #ffcb05;
  --orange: #faa61a;
  --paper: #ffffff;
  --mist: #f2f2f2;
  --ink: #14242a;
  --muted: #52646b;
  --line: rgba(20, 36, 42, 0.15);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Fira Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.site-header {
  min-height: 84px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.school-mark img { width: 260px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: #9b6300; }
.nav-contact { border-bottom: 3px solid var(--yellow); padding-bottom: 4px; }
.menu-button {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  padding: 9px 13px;
}

.hero {
  background: var(--navy);
  color: white;
  min-height: 650px;
  padding: 74px max(32px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 90px;
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  margin: 0 10px 3px 0;
  background: currentColor;
}
.eyebrow.dark { color: #8a5900; }
.hero h1 {
  margin: 0;
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  line-height: 0.82;
  letter-spacing: -0.065em;
  font-weight: 900;
}
.hero-lede {
  max-width: 690px;
  margin: 38px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 7px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow); color: var(--navy); }
.button-primary:hover { background: var(--orange); }
.button-secondary { border: 1px solid rgba(255,255,255,0.4); color: white; }
.button-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.hero-image-wrap { justify-self: center; }
.portrait-frame {
  position: relative;
  width: min(31vw, 390px);
  aspect-ratio: 4 / 5;
  border-radius: 200px 200px 16px 16px;
  overflow: hidden;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid var(--yellow);
  border-radius: inherit;
  pointer-events: none;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.image-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  text-align: center;
}

.fact-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.fact-bar div { border-left: 3px solid var(--yellow); padding-left: 18px; }
.fact-bar strong { display: block; font-size: 2.2rem; font-weight: 900; }
.fact-bar span { color: var(--muted); font-size: 0.92rem; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 32px;
}
.split {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.35fr);
  gap: 90px;
}
.section-intro h2, .remarks h2, .service h2, .speaking h2, .contact h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}
.prose > p { margin: 0 0 22px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.credentials article { border-top: 3px solid var(--yellow); padding-top: 18px; }
.credentials span { color: #8a5900; font-weight: 800; }
.credentials h3 { margin: 8px 0; font-size: 1.02rem; }
.credentials p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

.wide-image {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.wide-image img {
  width: 100%;
  aspect-ratio: 2.25 / 1;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.wide-image figcaption {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  border-radius: 0 0 12px 12px;
  padding: 13px 18px;
  font-size: 0.82rem;
}

.practice { padding-top: 110px; }
.practice .section-intro { max-width: 720px; }
.principles {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.principle { background: white; padding: 34px; }
.principle-number { color: #8a5900; font-size: 0.8rem; font-weight: 800; }
.principle h3 { margin: 24px 0 14px; font-size: 1.4rem; }
.principle p { margin: 0; color: var(--muted); line-height: 1.65; }

.turning-points {
  background: var(--navy);
  color: white;
  padding: 100px max(32px, calc((100vw - var(--max)) / 2));
}
.turning-points-heading { max-width: 850px; }
.turning-points-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
}
.turning-points-heading > p:last-child {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.69);
  font-size: 1.08rem;
  line-height: 1.72;
}
.reflection-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 76px;
  margin-top: 64px;
  align-items: start;
}
.reflection-quote {
  position: sticky;
  top: 24px;
  margin: 0;
  padding: 30px 0 0;
  border-top: 4px solid var(--yellow);
  color: var(--yellow);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.reflection-list { border-top: 1px solid rgba(255,255,255,0.18); }
.reflection-list details { border-bottom: 1px solid rgba(255,255,255,0.18); }
.reflection-list summary {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  cursor: pointer;
  list-style: none;
}
.reflection-list summary::-webkit-details-marker { display: none; }
.reflection-list summary > span:first-child {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
}
.reflection-list summary strong { font-size: 1.17rem; }
.summary-action {
  color: rgba(255,255,255,0.56);
  font-size: 0.78rem;
  font-weight: 700;
}
.summary-action::before { content: "+ "; color: var(--yellow); }
.reflection-list details[open] .summary-action::before { content: "− "; }
.reflection-list details[open] .summary-action { color: white; }
.reflection-list summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}
.reflection-body {
  padding: 0 0 36px 60px;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
}
.reflection-body p { margin: 0 0 18px; }
.source-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 25px; }
.source-links a {
  color: var(--yellow);
  font-size: 0.86rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.outcomes { padding-top: 110px; }
.outcomes-intro { max-width: 820px; }
.outcomes-intro > p:last-child,
.media-intro > p:last-child {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}
.results-panel {
  margin-top: 58px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.results-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 34px;
  padding: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.results-kicker {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.results-heading h3 { margin: 0; font-size: 1.5rem; }
.results-heading > a {
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 700;
  text-underline-offset: 4px;
}
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.result-grid article {
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.result-grid article:last-child { border-right: 0; }
.result-grid strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2.4rem, 4.8vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}
.result-grid h4 { margin: 28px 0 7px; font-size: 1rem; }
.result-grid p { margin: 0; color: rgba(255,255,255,0.58); font-size: 0.86rem; }
.results-note {
  margin: 0;
  padding: 16px 34px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.54);
  font-size: 0.75rem;
  line-height: 1.5;
}

.destinations {
  background: var(--mist);
  padding: 100px max(32px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 76px;
}
.destinations-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}
.destinations-heading > p:last-of-type {
  margin: 22px 0;
  color: var(--muted);
  line-height: 1.68;
}
.destinations-heading .text-link { color: #765000; font-weight: 700; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.filter-button:hover,
.filter-button:focus-visible { border-color: #9b6300; }
.filter-button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.destination-display {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(240px, 0.78fr);
  gap: 14px;
}
.destinations-map {
  height: 430px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #dfe9e6;
  box-shadow: 0 18px 45px rgba(20,36,42,0.08);
}
.map-filters { margin-bottom: 14px; }
.map-pin {
  display: block;
  width: 17px;
  height: 17px;
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  background: var(--yellow);
  box-shadow: 0 2px 8px rgba(20,36,42,0.34);
  transform: rotate(-45deg);
}
.destinations-map .leaflet-popup-content-wrapper {
  border-radius: 8px;
  color: var(--navy);
  font-family: "Fira Sans", sans-serif;
}
.destinations-map .leaflet-popup-content {
  margin: 14px 16px;
  line-height: 1.4;
}
.popup-university {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}
.popup-university img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain;
}
.popup-university strong {
  display: block;
}
.destinations-map .popup-total {
  display: block;
  margin-top: 6px;
  color: #765000;
  font-size: 0.75rem;
  font-weight: 700;
}
.destinations-map .leaflet-control-attribution {
  font-size: 0.65rem;
}
.destination-directory {
  height: 430px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  scrollbar-color: #a99058 transparent;
  scrollbar-width: thin;
}
.directory-group {
  padding: 18px 18px 8px;
  border-bottom: 1px solid var(--line);
}
.directory-group:last-child { border-bottom: 0; }
.directory-group[hidden] { display: none; }
.directory-group h3 {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: -18px -18px 8px;
  padding: 14px 18px 10px;
  background: rgba(255,255,255,0.96);
  color: #765000;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.directory-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.directory-group li {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 5px 0;
  border-top: 1px solid #edf0ef;
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.25;
}
.directory-group li:first-child { border-top: 0; }
.directory-group img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  object-fit: contain;
}
.directory-total {
  flex: 0 0 auto;
  margin-left: auto;
  color: #765000;
  font-size: 0.68rem;
  font-weight: 700;
}
.destination-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--line);
}
.destination-highlights span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  background: white;
  color: var(--muted);
  font-size: 0.75rem;
}
.destination-highlights img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: contain;
}
.destination-highlights strong {
  display: inline-block;
  min-width: 24px;
  color: #765000;
  font-size: 0.95rem;
}
.destination-source-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}
.media-card[hidden] { display: none; }

.remarks {
  background: var(--navy);
  color: white;
  padding: 100px max(32px, calc((100vw - var(--max)) / 2));
}
.remarks-heading { max-width: 760px; }
.remarks-heading > p:last-child { max-width: 640px; color: rgba(255,255,255,0.65); line-height: 1.65; }
.remark-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.remark {
  min-height: 380px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 30px;
  background: rgba(255,255,255,0.045);
  display: flex;
  flex-direction: column;
}
.remark.featured { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.remark-meta { display: flex; justify-content: space-between; gap: 20px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.73rem; font-weight: 800; }
.remark:not(.featured) .remark-meta { color: var(--yellow); }
.remark h3 { margin: 58px 0 16px; font-size: 1.65rem; }
.remark p { margin: 0; color: rgba(255,255,255,0.67); line-height: 1.6; }
.remark.featured p { color: rgba(20,36,42,0.72); }
.remark blockquote { margin: auto 0 0; padding-top: 34px; font-size: 1.18rem; line-height: 1.45; font-weight: 700; }

.work { display: grid; grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.35fr); gap: 90px; }
.work-list article { display: grid; grid-template-columns: 125px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.work-list article:last-child { border-bottom: 1px solid var(--line); }
.work-year { color: #8a5900; font-size: 0.82rem; font-weight: 800; }
.work-list h3 { margin: 0 0 10px; font-size: 1.22rem; }
.work-list p { margin: 0; color: var(--muted); line-height: 1.65; }

.media-intro { max-width: 840px; }
.media-filters { margin-top: 38px; }
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.media-card {
  position: relative;
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.media-card:hover,
.media-card:focus-visible {
  transform: translateY(-4px);
  border-color: #9b6300;
  background: #fffaf0;
}
.media-card-video { border-top: 5px solid var(--yellow); }
.media-card-channel { background: var(--navy); color: white; border-color: var(--navy); }
.media-card-channel:hover,
.media-card-channel:focus-visible { background: var(--navy-2); color: white; }
.media-type {
  color: #765000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.media-card-channel .media-type { color: var(--yellow); }
.media-card h3 { margin: 52px 0 14px; font-size: 1.25rem; line-height: 1.28; }
.media-card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.58; }
.media-card-channel p { color: rgba(255,255,255,0.66); }
.media-arrow { position: absolute; right: 22px; bottom: 20px; color: #765000; font-size: 1.35rem; }
.media-card-channel .media-arrow { color: var(--yellow); }

.service {
  background: var(--mist);
  padding: 100px max(32px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  gap: 90px;
}
.service-copy > p:last-child { color: var(--muted); line-height: 1.65; }
.service-items article { padding: 24px 0; border-top: 1px solid var(--line); }
.service-items article:last-child { border-bottom: 1px solid var(--line); }
.service-items h3 { margin: 0 0 8px; }
.service-items p { margin: 0; color: var(--muted); line-height: 1.6; }

.speaking {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.speaking ul { margin: 0; padding: 0; list-style: none; }
.speaking li { padding: 18px 0 18px 26px; border-top: 1px solid var(--line); position: relative; font-weight: 600; }
.speaking li:last-child { border-bottom: 1px solid var(--line); }
.speaking li::before { content: ""; position: absolute; left: 0; top: 25px; width: 11px; height: 3px; background: var(--yellow); }

.contact {
  background: var(--navy);
  color: white;
  padding: 86px max(32px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.contact > div:first-child { max-width: 680px; }
.contact p:last-child { color: rgba(255,255,255,0.65); line-height: 1.6; }
.contact-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.text-link { color: white; text-underline-offset: 4px; }

footer {
  background: #0e1b20;
  color: rgba(255,255,255,0.63);
  padding: 32px max(32px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 40px;
  align-items: center;
  font-size: 0.84rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: white; font-weight: 700; }
.footer-brand img { width: 34px; height: 34px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; color: var(--yellow); }
footer > p { margin: 0; grid-column: 1 / -1; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-header { position: relative; }
  .primary-nav {
    display: none;
    position: absolute;
    z-index: 10;
    top: 74px;
    left: 20px;
    right: 20px;
    padding: 22px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 15px 40px rgba(20,36,42,0.16);
    flex-direction: column;
    align-items: flex-start;
  }
  .primary-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; gap: 50px; padding-top: 60px; }
  .hero h1 { font-size: clamp(4rem, 17vw, 7rem); }
  .hero-image-wrap { justify-self: start; }
  .portrait-frame { width: min(72vw, 390px); }
  .fact-bar { grid-template-columns: repeat(2, 1fr); }
  .split, .work, .service, .speaking, .reflection-layout, .destinations { grid-template-columns: 1fr; gap: 50px; }
  .principles, .remark-grid { grid-template-columns: 1fr; }
  .reflection-quote { position: static; }
  .result-grid, .media-grid { grid-template-columns: repeat(2, 1fr); }
  .result-grid article:nth-child(2) { border-right: 0; }
  .result-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.14); }
  .remark { min-height: 330px; }
  .contact { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header { padding: 15px 20px; }
  .school-mark img { width: 205px; }
  .hero { padding-left: 22px; padding-right: 22px; }
  .hero h1 { font-size: 4rem; }
  .fact-bar, .section, .wide-image, .speaking { padding-left: 22px; padding-right: 22px; }
  .fact-bar { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .fact-bar strong { font-size: 1.65rem; }
  .section { padding-top: 74px; padding-bottom: 74px; }
  .credentials { grid-template-columns: 1fr; }
  .wide-image img { aspect-ratio: 1.35 / 1; }
  .work-list article { grid-template-columns: 1fr; gap: 9px; }
  .remarks, .service, .contact, .turning-points, .destinations { padding-left: 22px; padding-right: 22px; }
  .reflection-list summary { grid-template-columns: 32px 1fr; gap: 10px; padding: 12px 0; }
  .summary-action { grid-column: 2; }
  .reflection-body { padding-left: 42px; }
  .results-heading { align-items: flex-start; flex-direction: column; }
  .result-grid, .media-grid { grid-template-columns: 1fr; }
  .destinations-map { height: 360px; }
  .destination-display { grid-template-columns: 1fr; }
  .destination-directory { height: 420px; }
  .destination-highlights { grid-template-columns: repeat(2, 1fr); }
  .result-grid article { min-height: 180px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .result-grid article:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.14); }
  .result-grid article:last-child { border-bottom: 0; }
  .media-card { min-height: 245px; }
  .remark { padding: 24px; }
  .footer-links { flex-direction: column; gap: 8px; }
  footer { grid-template-columns: 1fr; padding-left: 22px; padding-right: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
