/* =========================================================
   Dave Sharma website. Design tokens and global styles.
   Colours and type taken directly from the Figma file.
   ========================================================= */

:root {
  --blue: #1599e3;
  --navy: #0b4e8b;
  --navy-2: #004c8b;
  --navy-dark: #00284c;

  --ink: #5f5f5f;
  --ink-soft: #707070;
  --ink-light: #515151;
  --field-text: #454545;
  --muted: #ababab;

  --tint-10: rgba(21, 153, 227, 0.1);
  --tint-20: rgba(21, 153, 227, 0.2);
  --card-blue: #ebf6ff;
  --signup-bg: #e8f5fc;
  --grey-bg: #f3f3f3;
  --field: #f5f5f5;

  --maxw: 1280px;
  --gutter: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------------------------- Shared atoms ---------------------------- */

.h-display {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--navy);
}
.h-display--white {
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}
.pill--tint {
  background: var(--tint-20);
  color: var(--navy);
}
.pill--white {
  background: #fff;
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  padding: 0 30px;
  border: 1px solid transparent;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn--blue {
  background: var(--blue);
  color: #fff;
}
.btn--blue:hover {
  filter: brightness(0.93);
}
.btn--white {
  background: #fff;
  color: var(--navy);
}
.btn--white:hover {
  filter: brightness(0.95);
}
.btn--outline-blue {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: #fff;
}
.btn--outline-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--navy);
}
.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
  font-weight: 400;
  font-size: 18px;
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn .arrow {
  width: 22px;
}
.btn--blue .arrow,
.btn--white .arrow {
  width: 22px;
}

.link-underline {
  font-weight: 400;
  font-size: 25px;
  color: var(--navy);
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* ============================== NAV ============================== */

.nav {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  height: 52px;
  width: auto;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  font-size: 15px;
  color: var(--navy-2);
  text-decoration: none;
  line-height: 1.2;
}
.nav__link:hover {
  color: var(--blue);
}
.nav__link--connect {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--blue);
}
.nav__caret {
  display: block;
}
.nav__contact {
  margin-left: 0;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy-2);
}

/* ============================= HERO ============================= */

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/hero-portrait.png");
  background-size: cover;
  background-position: center right;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    89.5deg,
    rgba(0, 0, 0, 0.5) 21.65%,
    rgba(102, 102, 102, 0) 49.56%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 0 123px;
  color: #fff;
}
.hero__eyebrow {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin: 0 0 20px;
  font-size: 16px;
}
.hero__emblem {
  width: 53px;
  height: auto;
}
.hero__title {
  margin: 0 0 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6.2vw, 76px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}
.hero__roles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 36px;
  font-size: 16px;
}
.hero__roles p {
  margin: 0;
}
.hero__actions {
  display: flex;
  gap: 20px;
}
.hero__card {
  position: absolute;
  z-index: 3;
  top: 0;
  right: max(var(--gutter), calc((100% - var(--maxw)) / 2 + var(--gutter)));
  width: 226px;
  background: var(--card-blue);
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
}
.hero__card-item {
  padding: 15px 20px;
  font-size: 18px;
  color: var(--navy-2);
  text-decoration: none;
  text-align: center;
}
.hero__card-item:first-child {
  border-bottom: 1px solid rgba(21, 153, 227, 0.2);
}
.hero__card-item:hover {
  background: rgba(21, 153, 227, 0.08);
}

/* ====================== ABOUT + SURVEY ====================== */

.about {
  background: linear-gradient(var(--tint-10), var(--tint-10)), #fff;
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 94px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 598px;
  gap: 80px;
  align-items: stretch;
}
.about__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 516px;
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 445px;
}
.about__body p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  color: var(--ink);
}
.about__intro .btn {
  margin-top: 18px;
}

.survey {
  background: var(--navy);
  color: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.survey__title {
  color: #fff;
}
.survey__body {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  max-width: 445px;
}
.survey__cta {
  width: 100%;
  margin-top: auto;
}

/* ================== SHADOW MINISTERIAL ROLES ================== */

.roles {
  background: #fff;
}
.roles__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 116px var(--gutter);
}
.roles__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 206px;
}
.role {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.role__title {
  margin: 0;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.role__body {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 445px;
}

/* ====================== KEY PRIORITIES ====================== */

.priorities {
  background: var(--navy);
}
.priorities__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px var(--gutter);
}
.priorities__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.priority {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 380px;
}
.priority__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.priority__label {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
}
.priority__num {
  font-weight: 900;
  font-size: 30px;
  color: rgba(11, 78, 139, 0.2);
}
.priority__title {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  color: var(--navy);
}
.priority__body {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  color: var(--ink);
}

/* ======================= MEDIA CENTRE ======================= */

.media {
  background: #fff;
}
.media__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.media__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.media__head-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 640px;
}
.media__lead {
  margin: 6px 0 0;
  font-size: 18px;
  color: var(--ink);
}
.media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.media-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.media-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.media-card__meta time {
  font-size: 18px;
  color: var(--ink);
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 30px;
  border: 1px solid var(--navy-2);
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--navy);
}
.media-card__body {
  flex: 1;
  background: var(--tint-20);
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 360px;
}
.media-card__title {
  margin: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  color: var(--navy-2);
}
.media-card__more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navy-2);
  font-size: 20px;
  color: var(--navy-2);
  text-decoration: none;
}
.media-card__more .arrow {
  width: 38px;
}

.social-feature {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.social-feature__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.social-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.social-thumb {
  display: block;
  height: 564px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: var(--tint-20);
}

/* ==================== ABOUT SENATOR BANNER ==================== */

.about-banner {
  background: var(--grey-bg);
  padding: 92px var(--gutter);
}
.about-banner__card {
  max-width: 1269px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 709px;
}
.about-banner__text {
  background: var(--navy-dark);
  color: #fff;
  padding: 80px;
  padding-left: 100px;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
.about-banner__text .h-display {
  margin: 0;
}
.about-banner__text p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}
.about-banner__text .btn {
  align-self: flex-start;
}
.about-banner__photo {
  background-size: cover;
  background-position: center;
  background-color: #1c1c1c;
  position: relative;
}
.about-banner__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--navy-dark) 2.7%,
    rgba(28, 28, 28, 0) 32.4%
  );
}

/* ======================== NEWSLETTER ======================== */

.signup {
  background: var(--signup-bg);
  padding: 80px var(--gutter);
}
.signup__card {
  max-width: 1263px;
  margin: 0 auto;
  background: var(--navy-2);
  border-radius: 20px;
  padding: 80px 70px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.signup__text {
  color: #fff;
  max-width: 376px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.signup__text p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}
.signup__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.signup__row {
  display: flex;
  gap: 20px;
}
.signup__form input {
  width: 320px;
  max-width: 100%;
  padding: 20px;
  border: 0;
  background: var(--field);
  font-family: "Lato", sans-serif;
  font-size: 20px;
  color: var(--field-text);
}
.signup__form input::placeholder {
  color: var(--field-text);
}
.signup__submit {
  width: 320px;
  max-width: 100%;
}

/* ========================== FOOTER ========================== */

.footer {
  background: #fff;
  padding: 92px 0 0;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 98px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.footer__brand {
  width: 396px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__logo {
  height: 150px;
  width: auto;
}
.footer__auth {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  color: var(--ink-soft);
}
.footer__social {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--navy-2);
  color: #fff;
}
.footer__social svg {
  width: 22px;
  height: 22px;
}
.footer__social a:hover {
  background: var(--blue);
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 42px;
}
.footer__columns {
  display: flex;
  gap: 50px;
}
.footer__col-head {
  margin: 0 0 36px;
  font-weight: 900;
  font-size: 18px;
  line-height: 20px;
  color: var(--navy-2);
}
.footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 200px;
}
.footer__col a {
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  color: var(--ink-light);
  text-decoration: none;
}
.footer__col a:hover {
  color: var(--blue);
}
.footer__legal {
  max-width: var(--maxw);
  margin: 60px auto 0;
  padding: 40px 98px;
  display: flex;
  gap: 34px;
  font-size: 15px;
  line-height: 20px;
  color: var(--muted);
}
.footer__legal p {
  margin: 0;
}
.footer__legal a {
  color: var(--muted);
  text-decoration: none;
}
.footer__legal a:hover {
  color: var(--blue);
}

/* ========================= RESPONSIVE ========================= */

@media (max-width: 1100px) {
  .nav__inner {
    padding: 24px var(--gutter);
  }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    background: #fff;
    padding: 96px 30px 40px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 50;
    display: none;
    overflow-y: auto;
  }
  .nav__menu.is-open {
    display: flex;
    animation: navSlide 0.24s ease;
  }
  .nav__toggle {
    display: flex;
    z-index: 60;
  }

  .about__inner,
  .roles__grid,
  .priorities__grid,
  .media__grid,
  .social-feature__grid,
  .about-banner__card {
    grid-template-columns: 1fr;
  }
  .roles__grid {
    gap: 60px;
  }
  .priorities__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__card {
    position: static;
    width: 100%;
    max-width: 320px;
    margin-top: 32px;
  }
  .signup__card {
    flex-direction: column;
  }
  .footer__inner {
    flex-direction: column;
    padding: 0 var(--gutter);
  }
  .footer__right {
    align-items: flex-start;
  }
  .footer__legal {
    padding: 40px var(--gutter);
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .h-display {
    font-size: 40px;
    line-height: 44px;
  }
  .hero {
    min-height: 640px;
  }
  .hero__content {
    padding-left: var(--gutter);
  }
  .hero__title {
    font-size: 48px;
    line-height: 1.0;
  }
  .hero__actions {
    flex-wrap: wrap;
  }
  .about__inner,
  .roles__inner,
  .priorities__inner,
  .media__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .priorities__grid {
    grid-template-columns: 1fr;
  }
  .media__head,
  .social-feature__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .survey,
  .about-banner__text {
    padding: 40px;
  }
  .signup__card {
    padding: 40px;
  }
  .signup__row {
    flex-direction: column;
  }
  .footer__columns {
    flex-direction: column;
    gap: 36px;
  }
}

/* ==================== MEDIA CENTRE LISTING ==================== */

.ml-hero {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.ml-hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px var(--gutter);
}
.ml-hero__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
}

.ml-filters {
  background: #fff;
  border-bottom: 1px solid rgba(11, 78, 139, 0.12);
}
.ml-filters__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px var(--gutter);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.ml-search {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ml-search__icon {
  position: absolute;
  margin-left: 18px;
  color: var(--navy-2);
  pointer-events: none;
}
.ml-search input {
  width: 320px;
  max-width: 100%;
  height: 60px;
  padding: 0 20px 0 52px;
  border: 1px solid rgba(11, 78, 139, 0.2);
  background: var(--field);
  font-family: "Lato", sans-serif;
  font-size: 18px;
  color: var(--field-text);
}
.ml-search__btn {
  height: 60px;
}
.ml-tabs {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 12px 8px;
  justify-content: end;
}
.ml-tab {
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 30px;
  background: transparent;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  color: var(--navy-2);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.ml-tab:hover {
  background: var(--tint-10);
}
.ml-tab[aria-pressed="true"] {
  background: var(--navy-2);
  color: #fff;
}

.ml-list {
  background: #fff;
}
.ml-list__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px var(--gutter) 100px;
}
.ml-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 497px));
  justify-content: space-between;
  row-gap: 60px;
  column-gap: 80px;
}
.ml-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.ml-item__link {
  text-decoration: none;
}
.ml-item__title {
  margin: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  color: var(--navy-2);
}
.ml-item__link:hover .ml-item__title {
  color: var(--blue);
}
.ml-item__row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.ml-item__row time {
  font-size: 18px;
  color: var(--ink);
}
.ml-item__rule {
  flex: 1;
  height: 1px;
  background: rgba(11, 78, 139, 0.25);
}

.ml-empty {
  font-size: 18px;
  color: var(--ink);
  padding: 20px 0;
}

.ml-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 70px;
}
.ml-pager button {
  min-width: 38px;
  height: 38px;
  padding: 0 6px;
  border: 0;
  background: transparent;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  color: var(--navy-2);
  cursor: pointer;
  border-radius: 6px;
}
.ml-pager button[aria-current="true"] {
  font-weight: 900;
}
.ml-pager button:disabled {
  opacity: 0.3;
  cursor: default;
}
.ml-pager button:not(:disabled):hover {
  background: var(--tint-10);
}

@media (max-width: 900px) {
  .ml-grid {
    grid-template-columns: 1fr;
  }
  .ml-filters__inner {
    flex-direction: column;
  }
  .ml-tabs {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
    width: 100%;
  }
  .ml-search {
    width: 100%;
  }
  .ml-search input {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .ml-hero__title {
    font-size: 40px;
    line-height: 44px;
  }
  .ml-search {
    flex-direction: column;
    align-items: stretch;
  }
  .ml-search__btn {
    width: 100%;
  }
}

/* ============ NAV OVERLAY VARIANT (dark hero pages) ============ */

.nav--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
}
.nav--overlay .nav__link,
.nav--overlay .nav__link--connect {
  color: #fff;
}
.nav--overlay .nav__link:hover {
  color: #fff;
  opacity: 0.8;
}
.nav--overlay .nav__toggle span {
  background: #fff;
}

/* ==================== SINGLE ARTICLE ==================== */

.article-hero {
  position: relative;
  min-height: 801px;
  background-color: var(--navy-2);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 40, 76, 0.7) 0%,
    rgba(0, 40, 76, 0.35) 60%,
    rgba(0, 40, 76, 0.2) 100%
  );
}
.article-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 0 118px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
}
.article-hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 100px;
  font-size: 15px;
  color: #fff;
}
.article-hero__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  max-width: 640px;
}
.article-hero__scroll {
  position: absolute;
  right: 109px;
  bottom: 90px;
  z-index: 2;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article {
  position: relative;
  background: #fff;
}
.article__col {
  max-width: 794px;
  margin: 0 auto;
  padding: 60px var(--gutter) 100px;
}
.article__head {
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 32px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: var(--field-text);
}
.article__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--field-text);
}
.article__author-name {
  margin: 0;
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
}
.article__author-role {
  margin: 8px 0 0;
  font-size: 16px;
  color: var(--ink);
}
/* Design sets body at 24px/30px. Softened to 20px/32px for readability. */
.article__body {
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
}
.article__body p,
.article__body li,
.article__body strong {
  color: #1a1a1a;
}
.article__body p {
  margin: 0 0 18px;
}
.article__body h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 32px 0 14px;
}
.article__body strong {
  font-weight: 700;
}
.article__back {
  display: inline-block;
  margin-top: 50px;
  font-size: 18px;
  color: var(--navy-2);
  text-decoration: none;
}
.article__back:hover {
  color: var(--blue);
}
.article__rail {
  position: absolute;
  top: 80px;
  right: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 10px;
  background: var(--tint-10);
  border-radius: 100px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.article__rail a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-2);
}
.article__rail svg {
  width: 24px;
  height: 24px;
}
.article__rail a:hover {
  color: var(--blue);
}

/* Share bar */
.share-bar {
  background: var(--blue);
}
.share-bar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 55px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.share-bar__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
}
.share-bar__sub {
  margin: 10px 0 0;
  font-size: 20px;
  color: #fff;
}
.share-bar__icons {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.share-bar__icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
}
.share-bar__icons svg {
  width: 36px;
  height: 36px;
}
.share-bar__icons a:hover {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .article__rail {
    display: none;
  }
}
@media (max-width: 1100px) {
  .nav--overlay .nav__link,
  .nav--overlay .nav__link--connect {
    color: var(--navy-2);
  }
}
@media (max-width: 640px) {
  .article-hero {
    min-height: 560px;
  }
  .article-hero__inner {
    padding-left: var(--gutter);
  }
  .article-hero__title {
    font-size: 40px;
    line-height: 1.05;
  }
  .article__meta {
    font-size: 18px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .share-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .share-bar__title {
    font-size: 40px;
    line-height: 44px;
  }
}

/* ============ SHARED INNER PAGE HERO ============ */

.page-hero {
  position: relative;
  min-height: 801px;
  background-color: var(--navy-2);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 40, 76, 0.65) 0%,
    rgba(0, 40, 76, 0.3) 60%,
    rgba(0, 40, 76, 0.15) 100%
  );
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 0 118px;
}
.page-hero__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}
.page-hero__scroll {
  position: absolute;
  right: 109px;
  bottom: 90px;
  z-index: 2;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==================== PRIORITIES ACCORDION ==================== */

.acc-section {
  background: #fff;
}
.acc {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 119px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.acc__item {
  background: var(--tint-10);
}
.acc__summary {
  list-style: none;
  cursor: pointer;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.acc__summary::-webkit-details-marker {
  display: none;
}
.acc__title {
  font-weight: 900;
  font-size: 35px;
  color: var(--navy);
}
.acc__icon {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.2s ease;
}
.acc__item[open] .acc__icon {
  transform: rotate(180deg);
}
.acc__body {
  padding: 0 40px 40px;
}
.acc__body p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  color: var(--ink);
  max-width: 800px;
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 520px;
  }
  .page-hero__inner {
    padding-left: var(--gutter);
  }
  .page-hero__title {
    font-size: 38px;
    line-height: 1.05;
  }
  .acc {
    padding: 60px var(--gutter);
  }
  .acc__summary {
    padding: 28px;
  }
  .acc__title {
    font-size: 26px;
  }
  .acc__body {
    padding: 0 28px 28px;
  }
}

/* ==================== CONTACT PAGE ==================== */

.contact-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    130% 105% at 8% 78%,
    #004c8b 6%,
    #003058 46%,
    #00223f 72%,
    #001425 100%
  );
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/contact-watermark.png") no-repeat right top;
  background-size: cover;
  mix-blend-mode: soft-light;
  opacity: 0.35;
  pointer-events: none;
}
.contact-hero__portrait {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 46%;
  background: url("/assets/img/contact-portrait.png") no-repeat center bottom;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}
.contact-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 220px var(--gutter) 110px;
  display: flex;
  justify-content: flex-end;
}
.contact-hero__col {
  width: 669px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.contact-hero__head {
  display: flex;
  flex-direction: column;
  gap: 29px;
  color: #fff;
}
.contact-hero__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  text-transform: capitalize;
}
.contact-hero__sub {
  margin: 0;
  font-size: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__row {
  display: flex;
  gap: 20px;
}
.contact-form__row > * {
  flex: 1;
  min-width: 0;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #d1d1d1;
  background: #fff;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  color: var(--field-text);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--field-text);
}
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-form__submit {
  width: 100%;
  margin-top: 20px;
}

.contact-info {
  background: #01172a;
  color: #fff;
}
.contact-info__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px var(--gutter);
  display: flex;
  gap: 140px;
}
.contact-info__left {
  width: 554px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.contact-info__intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-info__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -1px;
}
.contact-info__intro p {
  margin: 0;
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
}
.contact-info__office {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info__label-blue {
  margin: 0;
  font-weight: 900;
  font-size: 28px;
  color: var(--blue);
}
.contact-info__addr {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
}
.contact-info__right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.contact-info__pair {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info__k {
  margin: 0;
  font-size: 24px;
}
.contact-info__v {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  color: var(--blue);
}
.contact-info__v a {
  color: inherit;
  text-decoration: none;
}
.contact-info__connect {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info__label-white {
  margin: 0;
  font-weight: 900;
  font-size: 28px;
  color: #fff;
}
.contact-info__social {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-info__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}
.contact-info__social svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 1000px) {
  .contact-hero__portrait {
    display: none;
  }
  .contact-hero__inner {
    justify-content: center;
    padding-top: 160px;
  }
  .contact-info__inner {
    flex-direction: column;
    gap: 60px;
  }
  .contact-info__left {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .contact-hero__title {
    font-size: 38px;
    line-height: 1.05;
  }
  .contact-form__row {
    flex-direction: column;
  }
  .contact-info__title {
    font-size: 40px;
    line-height: 44px;
  }
}

/* ==================== COMMITTEES ==================== */

.committees {
  background: #fff;
}
.committees__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
.committees__image {
  width: 100%;
  max-width: 1026px;
}
.committees__image img {
  width: 100%;
  height: auto;
}
.committees__col {
  width: 100%;
  max-width: 794px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.committees__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.committees__intro p {
  margin: 0;
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
  color: #1a1a1a;
}
.committees__intro p:last-child {
  font-weight: 400;
}
.committees__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.committee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 40px;
  background: var(--tint-10);
  text-decoration: none;
}
.committee-row span {
  font-size: 24px;
  line-height: 32px;
  color: #000;
}
.committee-row .arrow {
  flex-shrink: 0;
  width: 47px;
  color: var(--blue);
}
.committee-row:hover {
  background: var(--tint-20);
}

@media (max-width: 640px) {
  .committees__inner {
    padding: 60px var(--gutter);
    gap: 40px;
  }
  .committee-row {
    padding: 18px 24px;
    gap: 18px;
  }
  .committee-row span {
    font-size: 19px;
    line-height: 26px;
  }
}

/* ==================== PODCAST ==================== */

.pod-search {
  background: var(--tint-10);
}
.pod-search__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px var(--gutter);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.pod-search__form {
  display: flex;
  gap: 5px;
}
.pod-search__form input {
  width: 320px;
  max-width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid #d1d1d1;
  background: #fff;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  color: var(--field-text);
}
.pod-search__icon {
  width: 60px;
  height: 60px;
  border: 0;
  background: rgba(21, 140, 227, 0.2);
  color: var(--navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pod-search__all {
  background: var(--navy-2);
  color: #fff;
}
.pod-search__all:hover {
  filter: brightness(1.1);
}

.pod-list {
  background: #fff;
}
.pod-list__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px var(--gutter) 110px;
}
.pod-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 497px));
  justify-content: space-between;
  row-gap: 80px;
  column-gap: 80px;
}
.pod-ep {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.pod-ep__title {
  display: block;
  border-left: 10px solid var(--blue);
  padding-left: 25px;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -1px;
  color: var(--navy);
  text-decoration: none;
}
.pod-ep__title:hover {
  color: var(--blue);
}
.pod-ep__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.pod-ep__meta time {
  font-size: 20px;
  color: var(--ink);
}
.pod-ep__arrow {
  color: var(--blue);
  display: inline-flex;
}
.pod-ep__arrow .arrow {
  width: 79px;
}
.pod-ep__tag {
  border: 1px solid var(--navy);
  border-radius: 100px;
  padding: 5px 20px;
  font-size: 16px;
  color: var(--navy-2);
}
.pod-empty {
  font-size: 18px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .pod-grid {
    grid-template-columns: 1fr;
  }
  .pod-search__inner {
    justify-content: stretch;
    flex-wrap: wrap;
  }
  .pod-search__form {
    flex: 1;
  }
  .pod-search__form input {
    flex: 1;
    width: auto;
  }
}
@media (max-width: 640px) {
  .pod-ep__title {
    font-size: 28px;
    line-height: 36px;
    padding-left: 18px;
    border-left-width: 6px;
  }
}

/* ========================= ABOUT PAGE ========================= */
.about-page {
  background: linear-gradient(var(--tint-10), var(--tint-10)), #fff;
}
.about-page__col {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px var(--gutter) 90px;
}
.about-page__h {
  margin: 40px 0 16px;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.about-page__col > .about-page__h:first-child {
  margin-top: 0;
}
.about-page p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.about-page__figure {
  margin: 28px 0 36px;
}
.about-page__figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.about-page__figure--inline {
  max-width: 420px;
  margin: 8px 0 28px;
}
.about-page__quote {
  margin: 36px 0;
  padding: 8px 0 8px 28px;
  border-left: 4px solid var(--blue);
}
.about-page__quote p {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  font-style: italic;
  color: var(--navy);
}
.about-page__quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--blue);
}

.about-cta {
  background: var(--navy);
}
.about-cta__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-cta__inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 560px;
}

/* ===================== IMAGE FORMATTING SAFETY ===================== */
/* Keep photos from stretching or collapsing regardless of natural ratio. */
.committees__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.social-feature__media,
.social-card__media {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.media-releases-image,
.ml-item__media {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===================== NAV DROPDOWNS ===================== */
.nav__item--has-children {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__link--parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav__caret {
  transition: transform 0.18s ease;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 40, 76, 0.16);
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 60;
}
/* Hover bridge so the menu does not close in the gap. */
.nav__item--has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__item--has-children:hover .nav__dropdown,
.nav__item--has-children:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
}
.nav__item--has-children:hover .nav__caret,
.nav__item--has-children:focus-within .nav__caret {
  transform: rotate(180deg);
}
.nav__droplink {
  display: block;
  padding: 11px 14px;
  border-radius: 7px;
  font-size: 15px;
  color: var(--navy-2);
  text-decoration: none;
  white-space: nowrap;
}
.nav__droplink:hover {
  background: var(--card-blue);
  color: var(--blue);
}
/* On dark hero pages the parent label is white, but the dropdown panel stays
   white with navy links so it is always readable. */
.nav--overlay .nav__link--parent {
  color: #fff;
}
.nav--overlay .nav__droplink {
  color: var(--navy-2);
}

@media (max-width: 1100px) {
  /* In the slide-in mobile panel, show sub-links inline under the parent. */
  .nav__item--has-children {
    display: block;
    width: 100%;
  }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 6px 0 0 12px;
    min-width: 0;
  }
  .nav__item--has-children::after {
    display: none;
  }
  .nav--overlay .nav__link--parent {
    color: var(--navy-2);
  }
  .nav__caret {
    display: none;
  }
  .nav__droplink {
    padding: 8px 0;
  }
}

/* ===================== ABOUT LIST + FORM PAGES ===================== */
.about-page__list {
  margin: 6px 0 18px;
  padding-left: 20px;
}
.about-page__list li {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}
.form-page {
  background: #f6f6f6;
}
.form-page__intro {
  font-family: "Lato", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0 0 40px;
}
.form-page__col {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--gutter) 84px;
}
.form-page__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.form-page__row {
  display: flex;
  gap: 16px;
}
.form-page__form input,
.form-page__form textarea {
  flex: 1;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  color: var(--field-text);
}
.form-page__form textarea {
  resize: vertical;
}
.form-page__form .btn {
  align-self: flex-start;
}
.form-page__embed {
  margin-top: 24px;
  min-height: 320px;
  border: 1px dashed #c5d8e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.form-page__embed-note {
  color: var(--muted);
  font-size: 16px;
}
@media (max-width: 640px) {
  .form-page__row {
    flex-direction: column;
  }
}

/* ===================== VIDEO EMBED + PAGE ACTIONS ===================== */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 32px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* ===================== MEDIA CENTRE (exact Figma) ===================== */
.ml-hero {
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ml-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 20%, rgba(102, 102, 102, 0) 52%);
}
.ml-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.ml-hero__block {
  max-width: 560px;
  text-align: center;
  color: #fff;
}
.ml-hero__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}
.ml-hero__sub {
  margin: 14px 0 0;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.4;
}

.ml-filters {
  background: rgba(21, 153, 227, 0.08);
}
.ml-filters__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px var(--gutter);
  display: flex;
  gap: 30px 40px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.ml-filters__left {
  display: flex;
  align-items: stretch;
  gap: 18px;
}
.ml-search {
  display: flex;
  align-items: stretch;
  height: 56px;
  gap: 5px;
}
.ml-search__cal,
.ml-search__btn {
  width: 56px;
  flex: 0 0 56px;
  background: rgba(21, 140, 227, 0.2);
  color: #0b4e8b;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ml-search input {
  width: 300px;
  max-width: 44vw;
  border: 1px solid #d1d1d1;
  background: #fff;
  padding: 0 18px;
  font-size: 16px;
  font-family: "Lato", sans-serif;
}
.ml-seeall {
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 30px;
  background: #004c8b;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
}
.ml-seeall:hover {
  background: #003862;
}
.ml-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
}
.ml-tab {
  border: 1px solid rgba(0, 76, 139, 0.4);
  color: rgba(11, 78, 139, 0.6);
  background: transparent;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.ml-tab:hover,
.ml-tab[aria-pressed="true"] {
  border-color: #004c8b;
  color: #0b4e8b;
}

.ml-list__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px var(--gutter);
}
.ml-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 120px;
}
.ml-item {
  display: flex;
  flex-direction: column;
}
.ml-item__link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  text-decoration: none;
}
.ml-item__title {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #0b4e8b;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
}
.ml-grid .ml-item:first-child .ml-item__title {
  border-left: 8px solid #1599e3;
  padding-left: 22px;
}
.ml-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.ml-item__meta time {
  color: #5f5f5f;
  font-size: 18px;
  font-family: "Lato", sans-serif;
}
.ml-item__arrow {
  display: flex;
  align-items: center;
}
.ml-item__tag {
  align-self: flex-start;
  border: 1px solid #0b4e8b;
  color: #004c8b;
  border-radius: 100px;
  padding: 5px 20px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.ml-pager {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.ml-pager button,
.ml-pager a {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  color: #b2b2b2;
  text-decoration: none;
  padding: 6px 10px;
}
.ml-pager .is-active {
  color: #0b4e8b;
  font-weight: 700;
}
@media (max-width: 820px) {
  .ml-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ml-filters__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================== PODCAST (exact Figma) ===================== */
.pod-feature__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 70px var(--gutter) 40px;
}
.pod-feature__head {
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 36px;
  margin-bottom: 48px;
}
.pod-feature__date {
  margin: 0 0 24px;
  color: #454545;
  font-size: clamp(16px, 1.6vw, 22px);
  font-family: "Lato", sans-serif;
}
.pod-feature__title {
  margin: 0;
  color: #0b4e8b;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
}
.pod-feature__body {
  position: relative;
}
.pod-video {
  display: block;
  position: relative;
  max-width: 833px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #021f37;
}
.pod-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pod-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pod-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(21, 153, 227, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}
.pod-share-vert {
  position: absolute;
  top: 0;
  right: -8px;
  list-style: none;
  margin: 0;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(21, 153, 227, 0.1);
  border-radius: 100px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.pod-share-vert a {
  color: #1599e3;
  display: flex;
}
.pod-share-vert svg {
  width: 26px;
  height: 26px;
}

.pod-eps__inner {
  max-width: 1264px;
  margin: 0 auto;
  padding: 60px var(--gutter) 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 56px;
}
.pod-card__thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 592 / 370;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0, 76, 139, 0.84), rgba(2, 31, 55, 0.9)),
    var(--thumb, url("/assets/img/media-hero.png"));
  background-size: cover;
  background-position: center;
  text-decoration: none;
}
.pod-card__name {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 0 24px;
  max-width: 360px;
}
.pod-card .pod-play {
  width: 60px;
  height: 60px;
}
.pod-card__name + .pod-play {
  display: none;
}
.pod-card__ago {
  margin: 18px 0 6px;
  color: #0b4e8b;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
}
.pod-card__title {
  margin: 0;
  color: #0b4e8b;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.13;
  letter-spacing: -0.64px;
}

.pod-keep {
  background: linear-gradient(-42deg, #0b4e8b 20%, #031525 80%);
  border-top: 1px solid #d1d1d1;
}
.pod-keep__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.pod-keep__title {
  margin: 0;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -1px;
}
.pod-keep__sub {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.6vw, 20px);
  max-width: 640px;
}
.pod-keep__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 36px;
  background: #fff;
  color: #004c8b;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
}
.pod-keep__btn:hover {
  background: #e8f5fc;
}
@media (max-width: 820px) {
  .pod-eps__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pod-share-vert {
    position: static;
    flex-direction: row;
    border-radius: 100px;
    margin: 20px auto 0;
    width: max-content;
  }
}

/* ===================== PRIORITIES ACCORDION (exact Figma) ===================== */
.acc__item {
  background: transparent;
}
.acc__summary {
  background: #e8f5fc;
  padding: 26px 40px;
}
.acc__title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  color: #0b4e8b;
}
.acc__body {
  padding: 36px 40px 16px;
}
.acc__body > * {
  max-width: 660px;
  margin-left: 40px;
}
.acc__h {
  margin: 0 0 18px 40px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #0b4e8b;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
}
.acc__intro {
  margin: 0 0 28px 40px;
  color: #707070;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.4;
}
.acc__body p {
  color: #5f5f5f;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  margin: 0 0 16px 40px;
}
@media (max-width: 820px) {
  .acc__body > *,
  .acc__h,
  .acc__intro,
  .acc__body p {
    margin-left: 0;
  }
}

/* ===================== LEGAL PAGES (Privacy / Terms) ===================== */
.legal {
  background: #fff;
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px var(--gutter) 96px;
}
.legal__updated {
  color: #707070;
  font-style: italic;
  margin: 0 0 36px;
}
.legal h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #0b4e8b;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  margin: 44px 0 14px;
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  font-size: clamp(17px, 1.8vw, 20px);
  margin: 26px 0 8px;
}
.legal p {
  color: #3a3a3a;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  margin: 0 0 16px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal li {
  color: #3a3a3a;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal a {
  color: var(--blue);
  text-decoration: underline;
}

/* ===================== PAGE HERO BLUE TREATMENT (per design) ===================== */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 62, 120, 0.55) 0%, rgba(1, 36, 74, 0.7) 100%);
  mix-blend-mode: multiply;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 46, 92, 0.32) 0%, rgba(1, 28, 58, 0.46) 100%);
}

/* ===================== ABOUT PAGE (frame 231-2392) ===================== */
.about-split {
  display: flex;
  gap: 48px;
  align-items: center;
  margin: 8px 0 44px;
}
.about-split__text {
  flex: 1 1 0;
  min-width: 0;
}
.about-split__text .about-page__h {
  margin-top: 0;
}
.about-polaroids {
  position: relative;
  flex: 0 0 380px;
  width: 380px;
  min-height: 540px;
}
.polaroid {
  position: absolute;
  margin: 0;
  width: 290px;
  background: #f5f5f5;
  padding: 14px 14px 38px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.polaroid img {
  display: block;
  width: 100%;
  height: auto;
}
.polaroid--a {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}
.polaroid--b {
  top: 210px;
  left: 80px;
  transform: rotate(7deg);
  z-index: 2;
}
.about-photo {
  flex: 0 0 377px;
  margin: 0;
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.about-quote {
  margin: 44px 0 0;
  padding: 0;
  border: 0;
}
.about-quote p {
  margin: 0 0 18px;
  color: #004c8b;
  font-family: "Lato", sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.32;
}
.about-quote cite {
  color: #004c8b;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: clamp(18px, 2vw, 26px);
}

.about-cta {
  background: linear-gradient(-42deg, #0b4e8b 20%, #031525 80%);
  border-top: 1px solid #d1d1d1;
}
.about-cta__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.about-cta__title {
  margin: 0;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -1px;
}
.about-cta__sub {
  margin: 0;
  color: #fff;
  max-width: 760px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
}
.about-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 36px;
  background: #fff;
  color: #004c8b;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
}
.about-cta__btn:hover {
  background: #e8f5fc;
}
@media (max-width: 820px) {
  .about-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .about-polaroids {
    width: 100%;
    flex-basis: auto;
    min-height: 470px;
  }
  .about-photo {
    flex-basis: auto;
    width: 100%;
  }
}

/* ===================== MEDIA CENTRE date filter ===================== */
.ml-search {
  position: relative;
}
.ml-search__cal[aria-expanded="true"] {
  background: rgba(21, 140, 227, 0.38);
}
.ml-month {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 6;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d1d1d1;
  background: #fff;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #0b4e8b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.ml-month[hidden] {
  display: none;
}

/* ===================== FIRST SPEECH full-bleed hero (image has title baked in) ===================== */
.page-hero--full::before,
.page-hero--full::after {
  content: none;
  display: none;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================== MEDIA CENTRE modern calendar ===================== */
.ml-cal {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  width: 322px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(8, 40, 80, 0.22);
  font-family: "Lato", sans-serif;
}
.ml-cal[hidden] {
  display: none;
}
.ml-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ml-cal__title {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0b4e8b;
  padding: 6px 10px;
  border-radius: 8px;
}
.ml-cal__title:hover {
  background: #e8f5fc;
}
.ml-cal__nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #f2f6fa;
  color: #0b4e8b;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ml-cal__nav:hover {
  background: #1599e3;
  color: #fff;
}
.ml-cal__dow,
.ml-cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.ml-cal__dow {
  margin-bottom: 4px;
}
.ml-cal__dow span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #9aa7b4;
  text-transform: uppercase;
  padding: 4px 0;
}
.ml-cal__pad {
  aspect-ratio: 1;
}
.ml-cal__day {
  position: relative;
  aspect-ratio: 1;
  border: 0;
  cursor: pointer;
  background: none;
  border-radius: 9px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ml-cal__day:hover {
  background: #e8f5fc;
}
.ml-cal__day i {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: transparent;
}
.ml-cal__day.has-posts {
  color: #0b4e8b;
  font-weight: 700;
}
.ml-cal__day.has-posts i {
  background: #1599e3;
}
.ml-cal__day.is-selected {
  background: #0b4e8b;
  color: #fff;
}
.ml-cal__day.is-selected i {
  background: #fff;
}
.ml-cal__foot {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eef2f6;
}
.ml-cal__btn {
  flex: 1;
  border: 1px solid #d1dbe5;
  background: #fff;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 10px;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0b4e8b;
}
.ml-cal__btn:hover,
.ml-cal__btn.is-active {
  background: #0b4e8b;
  color: #fff;
  border-color: #0b4e8b;
}
.ml-cal__btn--clear {
  color: #6b7785;
}
.ml-cal__btn--clear:hover {
  background: #6b7785;
  border-color: #6b7785;
  color: #fff;
}

/* ===================== MEDIA HERO -> match blue treatment of other heroes ===================== */
.ml-hero::before {
  background: linear-gradient(180deg, rgba(7, 62, 120, 0.62) 0%, rgba(1, 36, 74, 0.74) 100%);
  z-index: 0;
}
.ml-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 46, 92, 0.32) 0%, rgba(1, 28, 58, 0.46) 100%);
}
.ml-hero__inner {
  z-index: 2;
}

/* ===================== MOBILE nav slide-in keyframe ===================== */
@keyframes navSlide {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}

/* ===================== MOBILE polish (<=600px) ===================== */
@media (max-width: 600px) {
  :root { --gutter: 20px; }

  /* footer: fixed-width brand was forcing horizontal scroll */
  .footer { padding-top: 56px; }
  .footer__inner { padding: 0 var(--gutter); gap: 40px; }
  .footer__brand { width: 100%; }
  .footer__logo { height: 104px; }
  .footer__legal { padding: 32px var(--gutter); gap: 14px; }

  /* signup band */
  .signup { padding: 48px var(--gutter); }
  .signup__card { padding: 30px 20px; gap: 26px; border-radius: 16px; }
  .signup__text { max-width: 100%; gap: 16px; }
  .signup__text p { font-size: 16px; line-height: 24px; }
  .signup__form { width: 100%; }
  .signup__form input,
  .signup__submit { width: 100%; font-size: 16px; padding: 15px 16px; }

  /* page hero: drop the big left indent + reposition scroll cue */
  .page-hero__inner { padding: 0 var(--gutter); }
  .page-hero__title { font-size: clamp(30px, 9vw, 40px); }
  .page-hero__scroll { right: 20px; bottom: 28px; width: 52px; height: 52px; }
  .page-hero { min-height: 460px; }

  /* media hero */
  .ml-hero { min-height: 360px; }
  .ml-hero__title { font-size: clamp(28px, 9vw, 40px); }
  .ml-hero__inner { padding: 44px var(--gutter); }
}

/* ===================== MOBILE polish, round 2 (<=600px) ===================== */
@media (max-width: 600px) {
  /* about polaroids: scale to fit, no overflow from rotation */
  .about-polaroids { min-height: 400px; }
  .polaroid { width: 218px; padding: 10px 10px 30px; }
  .polaroid--a { left: 0; }
  .polaroid--b { top: 168px; left: 98px; }

  /* long emails / phone numbers must wrap, not overflow */
  a[href^="mailto:"],
  a[href^="tel:"] { overflow-wrap: anywhere; word-break: break-word; }
}

/* ===================== MOBILE media filter bar (<=600px) ===================== */
@media (max-width: 600px) {
  .ml-filters__inner { padding: 24px var(--gutter); gap: 16px; }
  .ml-filters__left { width: 100%; flex-wrap: wrap; gap: 10px; }
  .ml-search { flex: 1 1 100%; flex-direction: row; align-items: stretch; height: 50px; gap: 6px; }
  .ml-search input { width: auto; flex: 1 1 auto; max-width: none; }
  .ml-search__cal,
  .ml-search__btn { width: 50px; flex: 0 0 50px; }
  .ml-seeall { flex: 1 1 100%; justify-content: center; height: 48px; }
  .ml-tabs { width: 100%; max-width: none; }
  .ml-tab { padding: 10px 15px; font-size: 14px; }
  .ml-cal { width: min(322px, calc(100vw - 40px)); }
}
