@font-face {
  font-family: "Avenir Next LT Pro";
  src:
    local("Avenir Next LT Pro"),
    local("AvenirNextLTPro-Regular"),
    local("Avenir Next LT Pro 55 Roman");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next LT Pro";
  src:
    local("Avenir Next LT Pro Demi"),
    local("AvenirNextLTPro-Demi"),
    local("Avenir Next LT Pro 65 Medium");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

:root {
  --navy: #0b2a4a;
  --navy-dark: #071d33;
  --blue: #1f5f95;
  --forest: #1c7a52;
  --gold: #c9962f;
  --gold-light: #e8c979;
  --cream: #f8f5ef;
  --white: #fff;
  --ink: #1c2430;
  --slate: #5c6b7a;
  --line: #e6e1d6;
  --shadow: 0 14px 38px rgba(11, 42, 74, .09);

  --font-head: "Avenir Next LT Pro", "Avenir Next", Avenir, Arial, sans-serif;
  --font-body: "Avenir Next LT Pro", "Avenir Next", Avenir, Arial, sans-serif;

  --header-brand-height: 96px;
  --hero-height: 376px;
  --hero-gap: clamp(30px, 4vw, 52px);
  --hero-padding: 24px;
  --carousel-width: 540px;
  --carousel-height: 280px;

  --section-space: 64px;
  --section-space-mobile: 48px;
  --card-gap: 24px;
  --card-gap-compact: 16px;
  --card-padding: 24px;
  --card-radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

body {
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
  background: var(--white);
}

p,
li,
dd,
dt,
a,
label,
table,
button,
input,
select,
textarea {
  line-height: 1.2;
}

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

a {
  color: var(--blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.45rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); }
h3 { font-size: 1.18rem; }

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  padding: 10px;
  background: #fff;
}

.skip-link:focus {
  left: 8px;
}

/* Legacy contact-strip markup is deliberately retired from the visual layout. */
.topbar {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 20px rgba(11, 42, 74, .08);
}

.brand-row {
  min-height: var(--header-brand-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 8px;
}

.brand {
  display: block;
  width: min(325px, 34vw);
  flex: 0 1 325px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-btn,
.menu-toggle {
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  font: 700 .84rem var(--font-body);
}

.login-btn {
  background: var(--navy);
  color: #fff;
}

.login-btn.is-disabled {
  opacity: .62;
  cursor: not-allowed;
}

.menu-toggle {
  display: none;
  background: var(--gold);
  color: var(--navy-dark);
  cursor: pointer;
}

.navigation-band {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.primary-nav a {
  padding: 13px 17px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: .83rem;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--forest);
  border-bottom-color: var(--gold);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--forest);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 64px;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 6px,
    transparent 6px 12px
  );
}

.eyebrow.light {
  color: var(--gold-light);
}

/* Shared hero system: one height and one grid for every page. */
.hero,
.page-hero,
.membership-hero,
.site-hero {
  height: var(--hero-height);
  min-height: var(--hero-height);
  overflow: hidden;
  padding: 0;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(7, 29, 51, .97), rgba(11, 42, 74, .72)),
    url("assets/tht-backdrop.png") center / cover;
}

.page-hero > .site-shell,
.hero-grid,
.membership-hero-grid,
.site-hero-grid {
  height: 100%;
  min-height: 0;
}

.page-hero > .site-shell {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid,
.membership-hero-grid,
.site-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, var(--carousel-width));
  align-items: center;
  gap: var(--hero-gap);
  padding-block: var(--hero-padding);
}

.hero-copy,
.membership-hero-copy,
.site-hero-copy {
  min-width: 0;
  max-width: 620px;
  padding: 0;
}

.hero h1,
.page-hero h1,
.membership-hero h1,
.site-hero h1 {
  margin: .18rem 0 .72rem;
  color: #fff;
  font-size: clamp(3rem, 4.4vw, 4.2rem);
  line-height: 1.02;
}

.hero h1.hero-title-long,
.site-hero h1.hero-title-long {
  max-width: 600px;
  font-size: clamp(2.35rem, 3vw, 2.9rem);
  line-height: 1.02;
}

.hero-copy > p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.membership-hero-copy > p:not(.eyebrow),
.site-hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: #e2edf6;
  font-size: 1.03rem;
  line-height: 1.28;
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 800;
  font-size: .87rem;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn.secondary {
  background: #fff;
  color: var(--navy);
}

.btn.outline-dark {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn.full {
  width: 100%;
  margin-top: 10px;
}

.hero-carousel-host,
.membership-hero-media.hero-carousel-host {
  width: min(100%, var(--carousel-width));
  min-width: 0;
  justify-self: end;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.hero-carousel-fallback,
.hero-carousel {
  width: 100%;
  height: var(--carousel-height);
  border: 10px solid rgba(255, 255, 255, .96);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .30);
}

.hero-carousel-fallback {
  object-fit: contain;
  object-position: center;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-y;
}

.hero-carousel-viewport,
.hero-carousel-track,
.hero-carousel-slide {
  width: 100%;
  height: 100%;
}

.hero-carousel-viewport {
  overflow: hidden;
}

.hero-carousel-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 620ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.hero-carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  background: #fff;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.hero-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 50%;
  background: rgba(4, 24, 43, .74);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
}

.hero-carousel-control:hover,
.hero-carousel-control:focus-visible {
  background: var(--gold);
  color: var(--navy-dark);
  outline: none;
}

.hero-carousel-control.prev { left: 12px; }
.hero-carousel-control.next { right: 12px; }

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 11px;
  z-index: 3;
  display: flex;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(4, 24, 43, .66);
  transform: translateX(-50%);
  backdrop-filter: blur(6px);
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
  cursor: pointer;
}

.hero-carousel-dot[aria-current="true"] {
  width: 23px;
  border-radius: 999px;
  background: var(--gold);
}

.flyer-card {
  display: none;
}

/* Shared card spacing system. */
.card-grid,
.quick-facts,
.leadership-grid,
.steps,
.category-grid,
.gallery-year-grid,
.pending-grid {
  gap: var(--card-gap);
}

.stack,
.document-list,
.faq-list,
.card-grid.compact {
  gap: var(--card-gap-compact);
}

.quick-facts {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block: var(--card-gap) 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quick-facts article,
.card,
.person,
.steps li,
.category-grid span,
.pending-grid span,
.gallery-year-grid article,
.document,
.form-card,
.notice-card,
.info-panel {
  border-radius: var(--card-radius);
}

.quick-facts article {
  padding: var(--card-padding);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-facts h2 {
  margin: .5rem 0;
  font-size: 1.1rem;
}

.quick-facts p {
  margin: 0;
  color: var(--slate);
  font-size: .9rem;
}

.fact-icon {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
  font-weight: 800;
}

.content-section {
  padding-block: var(--section-space);
}

.content-section > h2,
.band h2 {
  margin: .2rem 0 1.5rem;
}

.band {
  padding-block: var(--section-space);
  background: var(--cream);
}

.card-grid {
  display: grid;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: var(--card-padding);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: #fff;
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  margin-top: 0;
}

.text-link {
  font-weight: 800;
  text-decoration: none;
}

.notice-card {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: var(--card-gap);
  align-items: center;
  padding: calc(var(--card-padding) + 4px);
  border-left: 5px solid var(--forest);
  background: #fff;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-dark);
  font: 800 .65rem var(--font-body);
  vertical-align: middle;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: calc(var(--card-gap) * 2);
  align-items: start;
}

.two-column.equal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-panel {
  padding: calc(var(--card-padding) + 6px);
  background: var(--navy);
  color: #e7eff6;
  box-shadow: var(--shadow);
}

.info-panel h2 {
  color: #fff;
}

.info-panel hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.price {
  margin: 0;
  color: var(--gold-light);
  font: 700 2.5rem var(--font-head);
}

.lead {
  max-width: 980px;
  font-size: 1.08rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.leadership-grid.supervisory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 880px;
}

.person {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.person img {
  width: 100%;
  height: 225px;
  padding: 14px;
  object-fit: contain;
  object-position: center;
  background: var(--cream);
}

.person div {
  padding: 15px 14px 17px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.person h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.15;
}

.person p {
  margin: .25rem 0 0;
  color: var(--forest);
  font-weight: 800;
  font-size: .82rem;
}

.subsection-title {
  margin-top: var(--section-space);
}

.stack {
  display: grid;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.steps.five {
  grid-template-columns: repeat(5, 1fr);
}

.steps li {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.steps li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 900;
}

.steps h3 {
  margin: .8rem 0 .35rem;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--slate);
  font-size: .86rem;
}

.notice {
  padding: 17px;
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  background: #fff5df;
  color: var(--navy-dark);
}

.notice.small {
  font-size: .88rem;
}

.faq-list {
  display: grid;
  max-width: 950px;
}

.faq-list details {
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.faq-list summary {
  padding: 16px 0;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0 0 17px;
}

.action-note {
  margin-top: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.category-grid span,
.pending-grid span {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--navy);
  font-weight: 800;
}

.gallery-year-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-year-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--card-padding) + 4px);
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff;
  box-shadow: var(--shadow);
}

.gallery-year-grid h2 {
  color: #fff;
  font-size: 1.25rem;
}

.gallery-year-grid article > span {
  color: var(--gold-light);
  font: 700 3rem var(--font-head);
}

.downloads-page {
  display: grid;
  gap: var(--section-space);
}

.download-category {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: calc(var(--card-gap) * 1.5);
  align-items: start;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
}

.document-list {
  display: grid;
}

.document {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--card-gap);
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.document h3 {
  margin: .2rem 0;
}

.document p {
  margin: 0;
  color: var(--slate);
}

.doc-type {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
}

.doc-type.pending {
  background: var(--slate);
}

.pending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.featured-news {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: calc(var(--card-gap) * 1.75);
  align-items: center;
  padding: 35px;
  border-radius: calc(var(--card-radius) + 4px);
  background: var(--navy);
  color: #fff;
}

.featured-news h2 {
  color: #fff;
  font-size: 2.7rem;
}

.featured-news img {
  width: 100%;
  border-radius: 12px;
}

.featured-news dl {
  display: grid;
  gap: var(--card-gap-compact);
}

.featured-news dl div {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: var(--card-gap-compact);
}

.featured-news dt {
  color: var(--gold-light);
  font-weight: 900;
}

.featured-news dd {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: calc(var(--card-gap) * 2);
  align-items: start;
}

address {
  font-style: normal;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours th,
.hours td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.hours th {
  background: var(--cream);
  color: var(--navy);
}

.form-card {
  padding: calc(var(--card-padding) + 6px);
  background: var(--cream);
}

.form-card form {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.form-card label {
  color: var(--navy);
  font-weight: 800;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.form-card :disabled {
  opacity: .7;
  cursor: not-allowed;
}

.form-status {
  color: var(--slate);
  font-size: .82rem;
}

.footer {
  background: var(--navy-dark);
  color: #dce8f3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: calc(var(--card-gap) * 1.5);
  align-items: start;
  padding-block: 48px;
}

.footer h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 7px 0;
  color: #dce8f3;
  text-decoration: none;
  font-size: .85rem;
}

.footer section:first-child p {
  max-width: 430px;
}

.footer section:last-child p,
.footer section:last-child p + p {
  margin: 0;
  padding: 0;
}

.footer section:last-child a {
  display: inline;
  margin: 0;
}

.copyright {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #a9bdd1;
  text-align: center;
  font-size: .76rem;
}

@media (max-width: 1050px) {
  :root {
    --header-brand-height: 90px;
    --carousel-width: 440px;
    --carousel-height: 240px;
    --hero-gap: 30px;
  }

  .site-shell {
    width: min(100% - 32px, 980px);
  }

  .brand {
    width: min(280px, 38vw);
    flex-basis: 280px;
  }

  .brand img {
    max-height: 58px;
  }

  .primary-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .primary-nav a {
    padding: 12px 13px;
  }

  .hero h1,
  .page-hero h1,
  .membership-hero h1,
  .site-hero h1 {
    font-size: clamp(2.8rem, 5vw, 3.7rem);
  }

  .hero h1.hero-title-long,
  .site-hero h1.hero-title-long {
    font-size: clamp(2.2rem, 4vw, 2.7rem);
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps,
  .steps.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid,
  .gallery-year-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-news {
    grid-template-columns: 1fr 280px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --carousel-width: 360px;
    --carousel-height: 220px;
    --hero-gap: 24px;
  }

  .hero-grid,
  .membership-hero-grid,
  .site-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, var(--carousel-width));
  }

  .hero h1,
  .page-hero h1,
  .membership-hero h1,
  .site-hero h1 {
    font-size: clamp(2.55rem, 5.5vw, 3.2rem);
  }

  .hero h1.hero-title-long,
  .site-hero h1.hero-title-long {
    font-size: clamp(2rem, 4.5vw, 2.45rem);
  }

  .leadership-grid,
  .leadership-grid.supervisory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .person img {
    height: 210px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-brand-height: 82px;
    --hero-height: auto;
  }

  .site-shell {
    width: min(100% - 28px, 700px);
  }

  .brand-row {
    gap: 12px;
  }

  .brand {
    width: min(205px, 60vw);
    flex-basis: auto;
  }

  .brand img {
    max-height: 48px;
  }

  .header-actions {
    margin-left: auto;
  }

  .login-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .navigation-band {
    border: 0;
  }

  .primary-nav {
    display: none;
    width: 100%;
    padding: 8px 14px 14px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    box-shadow: 0 12px 20px rgba(11, 42, 74, .12);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 11px 8px;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .page-hero,
  .membership-hero,
  .site-hero {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .page-hero > .site-shell {
    min-height: 280px;
    height: auto;
  }

  .hero-grid,
  .membership-hero-grid,
  .site-hero-grid {
    height: auto;
    grid-template-columns: 1fr;
    gap: var(--card-gap);
    padding-block: 34px;
  }

  .hero h1,
  .page-hero h1,
  .membership-hero h1,
  .site-hero h1,
  .hero h1.hero-title-long,
  .site-hero h1.hero-title-long {
    font-size: clamp(2.25rem, 11vw, 2.9rem);
  }

  .hero-carousel-host,
  .membership-hero-media.hero-carousel-host {
    width: 100%;
    justify-self: stretch;
  }

  .hero-carousel,
  .hero-carousel-fallback {
    height: 220px;
    border-width: 6px;
    border-radius: 6px;
  }

  .hero-carousel-control {
    width: 36px;
    height: 36px;
  }

  .quick-facts,
  .card-grid.three,
  .card-grid.two,
  .two-column,
  .two-column.equal,
  .notice-card,
  .leadership-grid,
  .leadership-grid.supervisory,
  .steps,
  .steps.five,
  .category-grid,
  .gallery-year-grid,
  .download-category,
  .pending-grid,
  .featured-news,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    width: 100%;
    margin-top: var(--card-gap);
  }

  .content-section,
  .band {
    padding-block: var(--section-space-mobile);
  }

  .notice-card {
    gap: var(--card-gap-compact);
  }

  .featured-news {
    padding: var(--card-padding);
  }

  .featured-news h2 {
    font-size: 2rem;
  }

  .featured-news img {
    max-width: 360px;
  }

  .download-category {
    gap: var(--card-gap-compact);
  }

  .document {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: var(--card-gap);
  }

  .button-row .btn {
    width: 100%;
  }

  .person img {
    height: 190px;
  }
}

@media (max-width: 430px) {
  .leadership-grid,
  .leadership-grid.supervisory {
    grid-template-columns: 1fr;
  }

  .person img {
    height: 250px;
  }

  .hero-carousel,
  .hero-carousel-fallback {
    height: 195px;
  }
}

@media (max-width: 420px) {
  .brand {
    width: min(170px, 58vw);
  }
}

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

  .hero-carousel-track {
    transition: none;
  }
}
