:root {
  --navy: #00274c;
  --navy-deep: #001a33;
  --maize: #ffcb05;
  --cream: #f6f3ec;
  --paper: #ffffff;
  --ink: #1e2a35;
  --muted: #61707d;
  --line: #dfe4e8;
  --shadow: 0 14px 34px rgba(0, 39, 76, 0.12);
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

/* Sticky header on every page */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  color: white;
  background: rgba(0, 39, 76, 0.97);
  border-bottom: 3px solid var(--maize);
  box-shadow: 0 6px 20px rgba(0, 26, 51, 0.16);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 10px 7px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--maize);
  border-bottom-color: var(--maize);
}

/* Homepage hero only */
.hero {
  min-height: 650px;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  text-align: center;
  color: white;
  background-image: linear-gradient(
      rgba(0, 26, 51, 0.55),
      rgba(0, 26, 51, 0.74)
    ),
    url("hero-home.jpg");
  background-size: cover;
  background-position: center;
}
.hero-content {
  max-width: 930px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--maize);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1,
.page-intro h1,
.section-heading h2,
.split-copy h2,
.cta-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.04;
}
.hero p {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

/* Compact photo headings for all internal pages */
.page-intro {
  position: relative;
  isolation: isolate;
  min-height: 245px;
  display: flex;
  align-items: center;
  padding: 52px clamp(22px, 8vw, 120px) 44px;
  color: white;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--maize);
}
.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--navy), #123b63);
}
.page-intro-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.breadcrumb {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
}
.breadcrumb a {
  text-decoration: none;
  color: var(--maize);
  font-weight: 700;
}
.page-intro h1 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}
.page-intro .subtitle {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-block;
  padding: 13px 23px;
  border: 2px solid var(--maize);
  background: var(--maize);
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--outline {
  color: white;
  background: transparent;
  border-color: white;
}
.button--outline:hover {
  color: var(--navy);
  background: white;
}
.button--navy {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

main {
  overflow: hidden;
}
.content-section {
  padding: clamp(65px, 8vw, 105px) clamp(22px, 8vw, 120px);
}
.content-section--cream {
  background: var(--cream);
}
.content-section--navy {
  background: var(--navy);
  color: white;
}
.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
}
.content-section--navy .section-heading h2 {
  color: white;
}
.section-heading p {
  margin: 16px auto 0;
  color: var(--muted);
}
.content-section--navy .section-heading p {
  color: rgba(255, 255, 255, 0.8);
}

.split {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split-media {
  min-height: 430px;
  background: #d9dde1 center/cover no-repeat;
}
.split-media--mission {
  background-image: url("mission-placeholder.jpg");
}
.split-media--about-mission {
  background-image: url("about-mission-placeholder.jpg");
}
.split-media--impact {
  background-image: url("impact-placeholder.jpg");
}
.split-media--community {
  background-image: none;
  overflow: hidden;
}
.split-media--community img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}
.split-copy {
  padding: clamp(36px, 6vw, 76px);
  background: var(--navy);
  color: white;
}
.split-copy--light {
  background: white;
  color: var(--ink);
}
.split-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}
.split-copy p {
  margin: 0 0 18px;
}
.split-copy .placeholder-note {
  color: var(--maize);
  font-weight: 700;
}
.split-copy--light .placeholder-note {
  color: var(--navy);
}

.card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.info-card,
.event-card,
.board-card,
.resource-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.info-card:hover,
.event-card:hover,
.board-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 39, 76, 0.16);
}
.info-card,
.resource-card {
  padding: 34px;
  border-top: 6px solid var(--maize);
}
.info-card h3,
.event-card h3,
.board-card h3,
.resource-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}
.info-card p,
.resource-card p {
  margin: 0;
  color: var(--muted);
}
.resource-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stat {
  padding: 32px 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}
.stat strong {
  display: block;
  color: var(--maize);
  font-family: Georgia, serif;
  font-size: 2.25rem;
  line-height: 1.1;
}
.stat span {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
}

.event-card {
  overflow: hidden;
}
.event-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.event-card-content {
  padding: 28px;
}
.event-card .event-type {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.event-card p {
  color: var(--muted);
}

.board-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}
.board-card {
  padding: 28px;
  text-align: center;
  min-height: 100%;
}
.board-card > p {
  color: var(--muted);
}
.person {
  margin-top: 22px;
}
.person img {
  width: 190px;
  height: 220px;
  margin: 0 auto 14px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 12px;
  border: 5px solid var(--cream);
}
.people-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.people-row .person {
  min-width: 0;
}
.people-row .person img {
  width: 145px;
  height: 180px;
}
/* Adjust these percentages to move individual photos up/down inside their crops. */
.person--archit img {
  object-position: center 20%;
}
.person--jennifer img {
  object-position: center 42%;
}
.person--abigail img {
  object-position: center 20%;
}
.person--madelyn img {
  object-position: center 20%;
}
.person--joe img {
  object-position: center 20%;
}
.person--alexander img {
  object-position: center 20%;
}
.person--sylvia img {
  object-position: center 20%;
}
.person--ritika img {
  object-position: center 20%;
}
.person strong {
  display: block;
  color: var(--navy);
  font-size: 1.06rem;
}
.person span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-grid img:first-child {
  grid-row: span 2;
}

.newsletter-panel {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: clamp(36px, 6vw, 68px);
  color: white;
  background: var(--navy);
}
.newsletter-panel h2 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
}
.newsletter-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}
.newsletter-box {
  padding: 28px;
  background: white;
  color: var(--ink);
}
.newsletter-box label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 800;
}
.newsletter-box input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  font: inherit;
}
.newsletter-box .button {
  width: 100%;
  margin-top: 12px;
  text-align: center;
}
.newsletter-box small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
}
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Georgia, serif;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.cta-panel {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 80px);
  text-align: center;
  color: white;
  background: var(--navy);
}
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.cta-panel p {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.placeholder-box {
  max-width: 940px;
  margin: 0 auto;
  padding: 30px;
  border: 2px dashed #a8b1b9;
  background: #f8fafb;
  color: #586571;
}
.placeholder-box strong {
  color: var(--navy);
}
.contact-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 42px;
  border: 1px solid var(--line);
  border-left: 7px solid var(--maize);
  background: white;
  color: var(--text);
  box-shadow: var(--shadow);
}
.contact-directory p {
  margin: 0;
  line-height: 1.75;
}
.contact-directory a {
  overflow-wrap: anywhere;
}
@media (max-width: 680px) {
  .contact-directory {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  padding: 52px clamp(22px, 8vw, 120px) 28px;
  color: white;
  background: var(--navy-deep);
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}
.site-footer h3 {
  margin-top: 0;
  color: var(--maize);
}
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}
.site-footer a {
  text-decoration: none;
}
.footer-bottom {
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.83rem;
}

@media (max-width: 980px) {
  :root {
    --header-height: auto;
  }
  .site-header {
    position: sticky;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .site-nav {
    justify-content: center;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split-media {
    min-height: 340px;
  }
  .card-grid,
  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .newsletter-panel {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-grid img:first-child {
    grid-row: auto;
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-text {
    display: none;
  }
  .brand img {
    width: 56px;
    height: 56px;
  }
  .site-nav a {
    font-size: 0.78rem;
    padding: 7px 6px 5px;
  }
  .hero {
    min-height: 560px;
    padding-top: 70px;
  }
  .content-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-intro {
    padding-left: 20px;
    padding-right: 20px;
  }
  .card-grid,
  .board-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .people-row {
    gap: 10px;
  }
  .people-row .person img {
    width: 130px;
    height: 165px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-grid img:first-child {
    grid-column: auto;
  }
}

/* Version 4: individual board biographies */
.board-profile-list {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.board-profile {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: start;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-left: 7px solid var(--maize);
  box-shadow: var(--shadow);
}
.board-profile-photo img {
  width: 220px;
  height: 270px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 12px;
}
.board-profile-copy h2 {
  margin: 2px 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}
.board-role {
  margin: 0;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bio-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}
.bio-meta span {
  display: block;
}
.bio-section {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.bio-section h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}
.bio-section p {
  margin: 0 0 8px;
}
.placeholder-note-dark {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
}

.membership-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.membership-grid div {
  padding: 24px 14px;
  text-align: center;
  background: var(--navy);
  color: white;
}
.membership-grid strong {
  display: block;
  color: var(--maize);
  font-family: Georgia, serif;
  font-size: 1.9rem;
}
.membership-grid span {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
}
.membership-note {
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--muted);
}

.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.contact-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-top: 6px solid var(--maize);
  box-shadow: var(--shadow);
}
.contact-card > span {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-card h3 {
  margin: 7px 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}
.contact-card p {
  color: var(--muted);
}
.contact-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 760px) {
  .board-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .board-profile-photo img {
    margin: 0 auto;
  }
  .bio-meta {
    grid-template-columns: 1fr;
  }
  .membership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Version 5: OTHA event storytelling and symposium archive */
.event-feature {
  padding: clamp(58px, 7vw, 92px) clamp(22px, 8vw, 120px);
}
.event-feature--cream {
  background: var(--cream);
}
.event-feature-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.event-feature-inner--reverse .event-feature-copy {
  order: 2;
}
.event-feature-inner--reverse > :last-child {
  order: 1;
}
.event-feature-copy h2,
.symposium-about h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}
.event-feature-copy p {
  color: var(--muted);
}
.impact-caption {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 5px solid var(--maize);
  background: white;
  color: var(--navy) !important;
  box-shadow: 0 8px 24px rgba(0, 39, 76, 0.08);
}
.event-feature-media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.event-feature-media--flyer {
  display: grid;
  place-items: center;
  background: white;
  padding: 18px;
  box-shadow: var(--shadow);
}
.event-feature-media--flyer img {
  width: 100%;
  height: min(560px, 70vw);
  max-height: 560px;
  object-fit: contain;
  box-shadow: none;
}
.event-feature-media--website {
  display: grid;
  place-items: center;
}
.website-preview {
  display: block;
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(0, 39, 76, 0.16);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.website-preview:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 39, 76, 0.2);
}
.website-preview-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  color: var(--muted);
  background: #f3f5f7;
  border-bottom: 1px solid rgba(0, 39, 76, 0.12);
  font-size: 0.78rem;
}
.website-preview-dots {
  color: #9aa4ae;
  letter-spacing: 0.18em;
}
.website-preview-content {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(32px, 6vw, 62px);
  background: linear-gradient(145deg, #00274c 0%, #124c7b 72%, #ffcb05 72%);
  color: white;
}
.website-preview-label {
  margin-bottom: 18px;
  color: var(--maize);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.website-preview-content strong {
  max-width: 520px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}
.website-preview-content > span:not(.website-preview-label):not(.website-preview-action) {
  margin-top: 7px;
}
.website-preview-action {
  margin-top: 28px;
  padding: 11px 16px;
  color: var(--navy);
  background: var(--maize);
  border-radius: 999px;
  font-weight: 800;
}
.image-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
}
.mini-gallery {
  display: grid;
  gap: 14px;
}
.mini-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.mini-gallery--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mini-gallery--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mini-gallery--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mini-gallery--education {
  grid-template-columns: 1fr;
}
.mini-gallery--education img {
  height: 330px;
  max-height: none;
  object-fit: cover;
  object-position: center;
  background: none;
}

.symposium-about {
  max-width: 900px;
  margin: 0 auto;
}
.symposium-about p {
  color: var(--muted);
  font-size: 1.06rem;
}
.archive-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}
.archive-year {
  padding: clamp(28px, 5vw, 52px);
  background: white;
  border: 1px solid var(--line);
  border-top: 7px solid var(--maize);
  box-shadow: var(--shadow);
}
.archive-heading {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}
.archive-heading > span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  color: var(--maize);
  background: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 800;
}
.archive-heading h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}
.archive-heading p {
  margin: 5px 0 0;
  color: var(--muted);
}
.archive-copy {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .event-feature-inner {
    grid-template-columns: 1fr;
  }
  .event-feature-inner--reverse .event-feature-copy,
  .event-feature-inner--reverse > :last-child {
    order: initial;
  }
  .mini-gallery--three {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .mini-gallery--two,
  .mini-gallery--three,
  .mini-gallery--four {
    grid-template-columns: 1fr;
  }
  .mini-gallery img {
    height: 230px;
  }
  .archive-heading {
    align-items: flex-start;
  }
  .archive-heading > span {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    font-size: 1.25rem;
  }
}

/* Version 6: OTHA Events dropdown navigation */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: max-content;
  max-width: 92vw;
  white-space: nowrap;
  padding: 8px;
  background: white;
  color: var(--ink);
  border-top: 5px solid var(--maize);
  box-shadow: 0 18px 42px rgba(0, 26, 51, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.site-nav .nav-dropdown-menu a {
  display: block;
  width: auto;
  padding: 9px 12px;
  border: 0;
  color: var(--navy);
}
.site-nav .nav-dropdown-menu a:hover,
.site-nav .nav-dropdown-menu a:focus {
  color: var(--navy);
  background: var(--cream);
  border: 0;
}
.nav-dropdown-menu strong {
  display: block;
  font-size: 0.9rem;
}
.nav-dropdown-menu small {
  display: none;
}
section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

@media (max-width: 900px) {
  .nav-dropdown-menu {
    left: auto;
    right: 0;
    transform: translate(0, 8px);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translate(0, 0);
  }
}

/* Embedded Brevo newsletter form */
.newsletter-embed {
  width: 100%;
  max-width: 620px;
  min-width: 0;
  background: #eef3f9;
  border-radius: 4px;
  overflow: hidden;
}
.newsletter-embed iframe {
  display: block;
  width: 100%;
  height: 390px;
  border: 0;
  background: #eef3f9;
}
@media (max-width: 700px) {
  .newsletter-embed iframe {
    height: 430px;
  }
}

/* Board leadership archive */
.board-team-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.board-team-heading h2 {
  margin-bottom: 10px;
}

/* Board member position displayed beneath each name */
.board-position {
  margin: 4px 0 14px;
  color: var(--muted);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
