:root {
  --ink: #07111f;
  --ink-soft: #0d1a2c;
  --red: #d51f2b;
  --red-dark: #a60f1a;
  --gold: #d8a64b;
  --paper: #f4f1ea;
  --white: #ffffff;
  --mist: #dce2ea;
  --muted: #6b7685;
  --line: rgba(7, 17, 31, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  color: var(--white);
  background: var(--red);
}

.container-xxl {
  --bs-gutter-x: 2.2rem;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.utility-bar {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.utility-bar__inner > span,
.utility-bar__inner a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.utility-bar__inner a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.utility-bar__inner a:hover {
  color: var(--gold);
}

.utility-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.utility-search {
  display: flex;
  width: 190px;
}

.utility-search input {
  min-width: 0;
  width: 100%;
  padding: 5px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 0;
}

.utility-search button {
  flex: 0 0 32px;
  color: var(--white);
  background: var(--red);
  border: 0;
  font-size: 1rem;
}

.mobile-search-link {
  display: none;
}

.utility-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(213, 31, 43, 0.2);
}

.navbar-shell {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.navbar-shell__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-lockup {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: var(--white);
}

.brand-logo {
  flex: 0 0 150px;
  width: 150px;
  max-width: 150px;
  height: auto;
  aspect-ratio: 300 / 293;
  object-fit: contain;
}

.brand-emblem {
  position: relative;
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.brand-emblem::before,
.brand-emblem::after {
  position: absolute;
  content: "";
  opacity: 0.7;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}

.brand-emblem::before {
  width: 28px;
  height: 46px;
}

.brand-emblem::after {
  width: 46px;
  height: 24px;
}

.brand-emblem__globe {
  position: absolute;
  right: 3px;
  left: 3px;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.brand-emblem__sun {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(213, 31, 43, 0.32);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.brand-copy span {
  margin-top: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-lockup--compact .brand-emblem {
  flex-basis: 46px;
  width: 46px;
  height: 46px;
}

.brand-lockup--compact .brand-logo {
  flex-basis: 50px;
  width: 50px;
  height: 50px;
}

.primary-menu {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
}

.primary-menu > a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.primary-menu > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-menu > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero {
  position: relative;
  min-height: 810px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider__slide {
  opacity: 0;
  transform: scale(1.07);
  transition:
    opacity 1.25s ease,
    transform 8s ease-out;
}

.hero-slider__slide--active {
  opacity: 1;
  transform: scale(1);
}

.hero__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 19, 0.98) 0%, rgba(4, 10, 19, 0.86) 35%, rgba(4, 10, 19, 0.23) 73%, rgba(4, 10, 19, 0.38) 100%),
    linear-gradient(0deg, rgba(4, 10, 19, 0.85) 0%, transparent 38%);
}

.hero__grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 690px;
  padding-top: 180px;
  padding-bottom: 82px;
}

.hero__content {
  width: min(690px, 60vw);
}

.eyebrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

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

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.2vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero h1 em,
.display-title em,
.contact-copy h2 em {
  color: var(--red);
  font-weight: 400;
}

.hero__content > p {
  max-width: 590px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-slider__controls {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 28px;
}

.hero-slider__controls button {
  width: 27px;
  height: 4px;
  padding: 0;
  opacity: 0.52;
  background: var(--white);
  border: 0;
  transition:
    width 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.hero-slider__controls button:hover,
.hero-slider__controls button:focus-visible,
.hero-slider__controls .hero-slider__dot--active {
  width: 42px;
  opacity: 1;
  background: var(--gold);
}

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--red);
}

.button--primary:hover {
  color: var(--white);
  background: var(--red-dark);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--red);
}

.hero-resource {
  display: grid;
  gap: 8px;
  width: 370px;
  margin-bottom: 12px;
  padding: 18px;
  background: rgba(7, 17, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-resource__label {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-resource__icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  place-items: center;
}

.hero-resource__icon--web {
  color: var(--ink);
  background: var(--gold);
}

.hero-resource__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 8px 10px 8px 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-resource__item:hover,
.hero-resource__item:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--red);
}

.hero-resource__item strong,
.hero-resource__item small {
  display: block;
}

.hero-resource__item strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.hero-resource__item small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  line-height: 1.35;
}

.hero-facts {
  position: relative;
  z-index: 3;
  background: rgba(4, 10, 19, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

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

.hero-facts__grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 120px;
  padding: 25px 32px 25px 0;
}

.hero-facts__grid > div + div {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts__grid > div > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.hero-facts p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  line-height: 1.4;
}

.hero-facts p strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.section-pad {
  padding-top: 118px;
  padding-bottom: 118px;
}

.mission-intro {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(7, 17, 31, 0.05) 50%, transparent 50.1%),
    var(--paper);
}

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.5vw, 4.9rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.display-title--light {
  color: var(--white);
}

.lead-copy {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.body-copy {
  max-width: 650px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
}

.text-link svg {
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-grid article {
  position: relative;
  min-height: 270px;
  padding: 38px 36px 34px 0;
}

.values-grid article + article {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.value-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  color: var(--white);
  background: var(--ink);
  place-items: center;
}

.value-number {
  position: absolute;
  top: 42px;
  right: 34px;
  color: rgba(7, 17, 31, 0.25);
  font-family: var(--serif);
  font-size: 1rem;
}

.values-grid h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.values-grid article > p:last-child {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.news-section,
.members-section {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
}

.section-heading--dark > p {
  color: var(--muted);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 0.8fr);
  gap: 24px;
}

.editorial-card {
  overflow: hidden;
  background: var(--white);
}

.editorial-card__visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.editorial-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 17, 31, 0.52), transparent 55%);
}

.editorial-card__visual img {
  object-fit: cover;
  transition: transform 0.6s ease;
}

.editorial-card:hover .editorial-card__visual img {
  transform: scale(1.025);
}

.editorial-card__visual > span {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 28px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-card__body {
  position: relative;
  padding: 34px 92px 38px 38px;
  color: var(--ink);
}

.card-meta {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-card h3 {
  max-width: 640px;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 400;
  line-height: 1.15;
}

.editorial-card__body > p:last-of-type {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.circle-link {
  position: absolute;
  right: 34px;
  bottom: 38px;
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
  transition: background 0.2s ease;
}

.circle-link:hover {
  color: var(--white);
  background: var(--red);
}

.editorial-stack {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-story {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 34px 30px;
  background: var(--ink-soft);
  transition: background 0.2s ease;
}

.mini-story:hover {
  background: #11213a;
}

.mini-story__icon {
  display: grid;
  width: 45px;
  height: 45px;
  color: var(--gold);
  border: 1px solid rgba(216, 166, 75, 0.38);
  place-items: center;
}

.mini-story h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.25;
}

.mini-story .text-link {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
}

.events-section,
.documents-section {
  background: var(--paper);
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 28px;
}

.event-feature {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  padding: 52px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(216, 166, 75, 0.23), transparent 18%),
    linear-gradient(135deg, #111e31 0%, #07111f 54%, #162239 100%);
  overflow: hidden;
}

.event-feature::before {
  position: absolute;
  top: -28%;
  right: -8%;
  width: 470px;
  height: 470px;
  content: "";
  opacity: 0.22;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(216, 166, 75, 0.08),
    0 0 0 100px rgba(216, 166, 75, 0.05);
}

.event-feature__year {
  position: absolute;
  top: 10px;
  right: 28px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 1;
}

.event-feature__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.event-feature h3 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
}

.event-feature__content > p:not(.card-meta) {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.64);
}

.event-timeline {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.event-timeline > a {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.2s ease,
    background 0.2s ease;
}

.event-timeline > a:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.6);
}

.event-timeline__date {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.event-timeline a > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.event-timeline small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-timeline strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.event-timeline__notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: auto;
  padding: 25px;
  color: var(--muted);
  background: rgba(216, 166, 75, 0.11);
  border-left: 3px solid var(--gold);
  font-size: 0.78rem;
}

.event-timeline__notice svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.home-event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.home-event-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 410px;
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(216, 166, 75, 0.25), transparent 22%),
    linear-gradient(140deg, #111e31 0%, #07111f 62%, #162239 100%);
}

.home-event-card:nth-child(2) {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.13), transparent 22%),
    linear-gradient(140deg, #b71927 0%, #7d101c 100%);
}

.home-event-card:nth-child(3) {
  background:
    radial-gradient(circle at 85% 12%, rgba(216, 166, 75, 0.2), transparent 22%),
    linear-gradient(140deg, #24334a 0%, #111e31 100%);
}

.home-event-card::before {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 330px;
  height: 330px;
  content: "";
  opacity: 0.28;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(216, 166, 75, 0.08),
    0 0 0 78px rgba(216, 166, 75, 0.04);
}

.home-event-card__year {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 8rem);
  line-height: 1;
}

.home-event-card__content {
  position: relative;
  z-index: 1;
}

.home-event-card__status {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-event-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.04;
}

.home-event-card__content > p:not(.card-meta) {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-event-grid--3 .home-event-card h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
}

.home-event-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 22px 0 0;
  padding: 18px 20px;
  color: var(--muted);
  background: rgba(216, 166, 75, 0.11);
  border-left: 3px solid var(--gold);
  font-size: 0.78rem;
}

.home-event-note a {
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 992px) {
  .home-event-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 575.98px) {
  .home-event-card {
    min-height: 390px;
    padding: 28px;
  }

  .home-event-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

.section-intro-light {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.region-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.region-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.region-tabs button {
  min-height: 64px;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.region-tabs button:last-child {
  border-right: 0;
}

.region-tabs button:hover,
.region-tabs button.active {
  color: var(--white);
  background: var(--red);
}

.region-content {
  position: relative;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  min-height: 390px;
  padding: 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 58px 58px;
}

.region-globe {
  position: relative;
  display: grid;
  width: 240px;
  height: 240px;
  color: rgba(216, 166, 75, 0.76);
  place-items: center;
  border: 1px solid rgba(216, 166, 75, 0.28);
  border-radius: 50%;
}

.region-globe::before,
.region-globe::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(216, 166, 75, 0.12);
  border-radius: 50%;
}

.region-globe::before {
  inset: -24px;
}

.region-globe::after {
  inset: 28px;
}

.region-globe__line {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(213, 31, 43, 0.24);
}

.region-globe__line--one {
  top: 56px;
  right: 46px;
}

.region-globe__line--two {
  bottom: 60px;
  left: 42px;
}

.region-globe__line--three {
  right: 58px;
  bottom: 48px;
}

.region-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.region-copy h3 {
  max-width: 610px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
}

.region-copy > p:not(.card-meta) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.58);
}

.verification-note {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
  padding: 10px 14px;
  color: var(--gold);
  background: rgba(216, 166, 75, 0.09);
  border: 1px solid rgba(216, 166, 75, 0.25);
  font-size: 0.7rem;
}

.region-code {
  position: absolute;
  right: 28px;
  bottom: -44px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: 14rem;
  line-height: 1;
}

.document-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.document-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.document-filters button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.document-filters button:hover,
.document-filters button.active {
  color: var(--white);
  background: var(--ink);
}

.document-toolbar > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.document-list {
  border-top: 1px solid var(--line);
}

.document-row {
  display: grid;
  grid-template-columns: 55px 65px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 18px 22px 18px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.2s ease,
    background 0.2s ease;
}

.document-row:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.document-row__icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--red);
  background: rgba(213, 31, 43, 0.08);
  place-items: center;
}

.document-row__year {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.document-row__title {
  display: flex;
  flex-direction: column;
}

.document-row__title small {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-row__title strong {
  margin: 2px 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.document-row__title > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.document-row__action {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-section {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.contact-section__accent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32%;
  opacity: 0.32;
  background:
    linear-gradient(135deg, transparent 42%, rgba(213, 31, 43, 0.34) 42.2%, transparent 43%),
    linear-gradient(45deg, transparent 68%, rgba(216, 166, 75, 0.14) 68.2%, transparent 69%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: 90px;
  padding-top: 110px;
  padding-bottom: 110px;
}

.contact-copy h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.3vw, 5.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.contact-copy > p {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.58);
}

.contact-security {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  max-width: 460px;
  margin-top: 34px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.76rem;
}

.contact-security svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.contact-form {
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.contact-page-content h2,
.contact-page-content h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact-page-content p {
  margin: 0 0 12px;
  color: #3b4656;
  line-height: 1.7;
}

.contact-page-content a {
  color: var(--red);
  overflow-wrap: anywhere;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.contact-form label > span {
  margin-bottom: 7px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f6f7f9;
  border: 1px solid #d7dce3;
  border-radius: 0;
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(213, 31, 43, 0.12);
}

.contact-form__footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.contact-form__footer > span {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-form button {
  flex: 0 0 auto;
}

.site-footer {
  color: var(--white);
  background: #030912;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 62px;
  padding-top: 70px;
  padding-bottom: 55px;
}

.footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-main > div:first-child > p {
  max-width: 340px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}

.footer-main > div > strong {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main > div > a,
.footer-main > div > span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

.footer-main > div > a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 11px;
  margin-top: 12px;
}

.footer-social a {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 65px;
  color: rgba(255, 255, 255, 0.36);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
}

.back-to-top {
  position: fixed;
  z-index: 1000;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(7, 17, 31, 0.3);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  place-items: center;
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--ink);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 1199.98px) {
  .primary-menu {
    gap: 18px;
  }

  .primary-menu > a {
    font-size: 0.72rem;
  }

  .hero-resource {
    width: 345px;
  }

  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 991.98px) {
  .container-xxl {
    --bs-gutter-x: 1.7rem;
  }

  .brand-logo {
    flex-basis: 120px;
    width: 120px;
    max-width: 120px;
  }

  .utility-bar__inner > span {
    display: none;
  }

  .utility-bar__inner {
    justify-content: flex-end;
  }

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

  .navbar-shell__inner {
    min-height: 120px;
  }

  .primary-menu {
    position: absolute;
    top: 156px;
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    align-items: stretch;
    padding: 12px 20px 22px;
    color: var(--white);
    background: rgba(4, 10, 19, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  }

  .primary-menu--open {
    display: flex;
    flex-direction: column;
  }

  .primary-menu > a {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .primary-menu > a::after {
    display: none;
  }

  .primary-menu .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.38);
  }

  .mobile-search-link {
    display: inline-flex;
  }

  .hero {
    min-height: 830px;
  }

  .hero__image {
    object-position: 66% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(4, 10, 19, 0.97), rgba(4, 10, 19, 0.7) 64%, rgba(4, 10, 19, 0.46)),
      linear-gradient(0deg, rgba(4, 10, 19, 0.88), transparent 44%);
  }

  .hero__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    min-height: 900px;
    padding-top: 154px;
    padding-bottom: 80px;
  }

  .hero__content {
    width: min(650px, 88vw);
  }

  .hero-resource {
    width: min(650px, 88vw);
    margin-bottom: 0;
  }

  .hero-facts__grid > div {
    min-height: 120px;
    padding-right: 18px;
  }

  .hero-facts__grid > div + div {
    padding-left: 18px;
  }

  .section-pad {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .mission-intro {
    background: var(--paper);
  }

  .values-grid {
    margin-top: 65px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 660px;
  }

  .editorial-grid,
  .event-layout {
    grid-template-columns: 1fr;
  }

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

  .mini-story {
    grid-template-columns: 1fr;
  }

  .event-timeline__notice {
    margin-top: 28px;
  }

  .region-content {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
    padding: 44px;
  }

  .region-globe {
    width: 200px;
    height: 200px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-copy {
    max-width: 720px;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 90px;
  }

  .mission-intro .row {
    --bs-gutter-x: 1.5rem;
  }

  .brand-emblem {
    flex-basis: 43px;
    width: 43px;
    height: 43px;
  }

  .brand-logo {
    flex-basis: 100px;
    width: 100px;
    max-width: 100px;
  }

  .navbar-shell__inner {
    min-height: 118px;
  }

  .primary-menu {
    top: 154px;
  }

  .brand-copy strong {
    font-size: 1.5rem;
  }

  .brand-copy span {
    font-size: 0.48rem;
  }

  .hero {
    min-height: 880px;
  }

  .hero__image {
    object-position: 69% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(4, 10, 19, 0.94), rgba(4, 10, 19, 0.54)),
      linear-gradient(0deg, rgba(4, 10, 19, 0.98), rgba(4, 10, 19, 0.1) 66%);
  }

  .hero__inner {
    min-height: 650px;
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .hero__content > p {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-slider__controls {
    margin-top: 22px;
  }

  .hero-facts__grid {
    grid-template-columns: 1fr;
  }

  .hero-facts__grid > div {
    min-height: auto;
    padding: 15px 0;
  }

  .hero-facts__grid > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .hero-facts p {
    font-size: 0.68rem;
  }

  .section-pad {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .values-grid article,
  .values-grid article + article {
    min-height: auto;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .values-grid article:first-child {
    border-top: 0;
  }

  .value-icon {
    margin-bottom: 24px;
  }

  .editorial-card__visual {
    min-height: 280px;
  }

  .editorial-card__body {
    padding: 30px 30px 95px;
  }

  .circle-link {
    right: 30px;
    bottom: 28px;
  }

  .editorial-stack {
    grid-template-columns: 1fr;
  }

  .mini-story {
    grid-template-columns: auto 1fr;
  }

  .event-feature {
    min-height: 500px;
    padding: 34px 28px;
  }

  .event-feature__year {
    font-size: 6rem;
  }

  .event-timeline > a {
    grid-template-columns: 55px 1fr auto;
    gap: 14px;
  }

  .region-tabs {
    display: flex;
    overflow-x: auto;
  }

  .region-tabs button {
    flex: 0 0 125px;
  }

  .region-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 38px 28px;
  }

  .region-globe {
    width: 165px;
    height: 165px;
  }

  .region-globe svg {
    width: 82px;
    height: 82px;
  }

  .document-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .document-row {
    grid-template-columns: 48px 1fr auto;
    gap: 15px;
    padding-right: 0;
  }

  .document-row__year {
    display: none;
  }

  .document-row__title > span {
    display: none;
  }

  .contact-grid {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__footer > span {
    max-width: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 479.98px) {
  .utility-bar {
    display: none;
  }

  .brand-logo {
    flex-basis: 100px;
    width: 100px;
    max-width: 100px;
  }

  .navbar-shell__inner {
    min-height: 118px;
  }

  .primary-menu {
    top: 118px;
  }

  .brand-copy span {
    max-width: 160px;
    line-height: 1.25;
  }

  .hero__inner {
    padding-top: 118px;
  }

  .hero {
    min-height: 855px;
  }

  .display-title {
    font-size: 2.7rem;
  }

  .event-timeline > a {
    grid-template-columns: 1fr auto;
    min-height: 105px;
  }

  .event-timeline__date {
    display: none;
  }

  .document-filters button {
    flex: 1 1 42%;
  }

  .document-row {
    grid-template-columns: 45px 1fr;
  }

  .document-row__action {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 15px 0;
  }
}

.search-shell {
  max-width: 980px;
}

.public-search-form {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.public-search-form > label {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.public-search-form > div {
  display: flex;
  gap: 10px;
}

.public-search-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid var(--line);
}

.search-note,
.search-empty {
  padding: 18px 0;
  color: var(--muted);
}

.search-result-group {
  margin-top: 44px;
}

.search-result-group h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--serif);
}

.search-result-group h2 span {
  display: inline-grid;
  min-width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: .7rem;
  place-items: center;
}

.search-result-list {
  border-top: 1px solid var(--line);
}

.search-result-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 17px 8px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.search-result-list a > span {
  display: grid;
  gap: 4px;
}

.search-result-list small {
  color: var(--muted);
}

@media (max-width: 680px) {
  .public-search-form > div {
    align-items: stretch;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Laravel content pages */
.inner-hero {
  padding: 225px 0 90px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.98), rgba(17, 30, 49, 0.92)),
    url("../img/wkc-hero.png") center 35% / cover;
}

.inner-hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.inner-hero > div > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.content-card {
  padding: 30px;
  background: var(--white);
  border-top: 3px solid var(--red);
}

.content-card > img {
  width: calc(100% + 60px);
  height: 220px;
  margin: -30px -30px 28px;
  object-fit: cover;
}

.content-card h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.15;
}

.content-card > p:not(.card-meta) {
  color: var(--muted);
}

.article-shell {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.article-image {
  display: block;
  width: 100%;
  height: clamp(280px, 52vw, 520px);
  margin-bottom: 48px;
  padding: 10px;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
}

.event-poster-preview {
  position: relative;
  display: block;
  overflow: hidden;
  width: min(100%, 330px);
  margin: 0 auto 52px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 46px rgba(7, 17, 31, 0.14);
  text-decoration: none;
}

.event-poster-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 470px;
  object-fit: contain;
}

.event-poster-preview span {
  display: block;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.event-poster-preview:hover span,
.event-poster-preview:focus-visible span {
  background: var(--red);
}

.image-lightbox {
  overflow: visible;
  max-width: none;
  max-height: none;
  padding: 0;
  background: transparent;
  border: 0;
}

.image-lightbox::backdrop {
  background: rgba(3, 9, 17, 0.9);
  backdrop-filter: blur(4px);
}

.image-lightbox img {
  display: block;
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.image-lightbox button {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  place-items: center;
}

.prose {
  color: #273346;
  font-size: 1.05rem;
  line-height: 1.85;
}

.prose h2,
.prose h3 {
  margin: 2em 0 0.6em;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
}

.prose a {
  color: var(--red);
  text-decoration: underline;
}

.pagination {
  margin-top: 46px;
}

.event-archive-heading {
  margin-top: 90px;
}

/* Events index */
.events-inner-hero {
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.96), rgba(17, 30, 49, 0.78)),
    url("../img/wkc-hero.png") center 42% / cover;
}

.event-status-section {
  padding: 42px 0;
  color: var(--white);
  background: var(--red-dark);
}

.event-status-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.event-status-heading p,
.event-status-heading h2 {
  margin: 0;
}

.event-status-heading p {
  color: rgba(255, 255, 255, 0.64);
}

.event-status-heading h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.event-live-dot {
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.42);
  animation: event-live-pulse 2.2s infinite;
}

@keyframes event-live-pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

.ongoing-event-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.ongoing-event-card {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr) 250px 34px;
  gap: 22px;
  align-items: center;
  min-height: 74px;
  padding: 14px 20px;
  background: rgba(110, 7, 18, 0.9);
  transition: background 0.2s ease;
}

.ongoing-event-card:hover {
  color: var(--white);
  background: rgba(72, 4, 12, 0.96);
}

.ongoing-event-card__date {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ongoing-event-card > strong {
  font-size: 0.88rem;
}

.ongoing-event-card > span:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}

.ongoing-event-card__action {
  text-align: right;
}

.event-future-section {
  background: var(--paper);
}

.future-event-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 500px;
  color: var(--white);
  background: var(--ink);
}

.future-event-hero__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.future-event-hero__visual::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, transparent 56%, rgba(7, 17, 31, 0.78));
}

.future-event-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future-event-hero__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 5vw, 72px);
}

.future-event-hero__content h2 {
  margin: 8px 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.future-event-hero__content > p:not(.card-meta) {
  color: rgba(255, 255, 255, 0.7);
}

.future-event-hero__content > span {
  margin: 10px 0 26px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.future-event-strip {
  margin-top: 2px;
  border-top: 1px solid var(--line);
}

.future-event-strip__item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 36px;
  gap: 24px;
  align-items: center;
  min-height: 86px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.future-event-strip__item:hover {
  background: var(--white);
}

.future-event-strip__date {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.future-event-strip__date strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.future-event-strip__date small,
.future-event-strip__copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.future-event-strip__copy {
  display: flex;
  flex-direction: column;
}

.future-event-strip__copy strong {
  margin-top: 4px;
  font-size: 0.86rem;
}

.event-empty-state {
  padding: 34px;
  background: var(--white);
  border-left: 3px solid var(--red);
}

.event-empty-state p {
  margin: 0;
}

.event-archive-section {
  color: var(--white);
  background: var(--ink);
}

.event-year-list {
  display: grid;
  gap: 54px;
}

.event-year-group {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 34px;
}

.event-year-group > header {
  padding-top: 5px;
  border-top: 3px solid var(--red);
}

.event-year-group > header h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 400;
}

.event-year-group > header span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-directory {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.event-row {
  display: grid;
  grid-template-columns: 82px 210px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 56px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}

.event-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.event-row:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.event-row__date,
.event-row__location {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-row__name {
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-row__action {
  color: var(--gold);
  text-align: right;
}

.event-empty-state--dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 991.98px) {
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ongoing-event-card {
    grid-template-columns: 140px minmax(0, 1fr) 34px;
  }

  .ongoing-event-card > span:nth-of-type(2) {
    display: none;
  }

  .future-event-hero {
    grid-template-columns: 1fr;
  }

  .future-event-hero__visual {
    min-height: 380px;
  }

  .future-event-hero__visual::after {
    background: linear-gradient(0deg, rgba(7, 17, 31, 0.88), transparent 62%);
  }

  .event-year-group {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 24px;
  }

  .event-row {
    grid-template-columns: 75px 160px minmax(0, 1fr) 32px;
  }
}

@media (max-width: 575.98px) {
  .inner-hero {
    padding: 180px 0 70px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .ongoing-event-card {
    grid-template-columns: 1fr 30px;
    gap: 8px;
  }

  .ongoing-event-card__date {
    grid-column: 1 / -1;
  }

  .future-event-hero__visual {
    min-height: 300px;
  }

  .future-event-hero__content {
    padding: 34px 24px 42px;
  }

  .future-event-strip__item {
    grid-template-columns: 70px minmax(0, 1fr) 26px;
    gap: 14px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .event-year-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-year-group > header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .event-row {
    grid-template-columns: 62px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 62px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .event-row__location {
    display: none;
  }

  .event-row__name {
    white-space: normal;
  }
}

/* Member directory */
.member-search {
  margin-bottom: 58px;
  padding: 28px;
  background: var(--white);
  border-left: 3px solid var(--red);
}

.member-search > label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-search > div {
  display: flex;
  gap: 10px;
}

.member-search input {
  min-width: 0;
  flex: 1;
  padding: 0 15px;
  border: 1px solid var(--line);
}

.member-clear {
  color: var(--ink);
  border-color: var(--line);
}

.member-directory {
  border-top: 1px solid var(--line);
}

.member-row {
  display: grid;
  grid-template-columns: 28px 170px minmax(0, 1fr) 80px 36px;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.member-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.42);
}

.member-row:hover {
  background: var(--white);
}

.member-row__flag {
  display: inline-grid;
  overflow: hidden;
  width: 24px;
  height: 18px;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  font-size: 1.08rem;
  line-height: 1;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(8, 25, 43, 0.14);
  place-items: center;
}

.member-row__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-row__country {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.member-row__name {
  margin: 0;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-row__abbr {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.member-row__action {
  text-align: right;
}

.member-row__action a {
  display: inline-grid;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--ink);
  place-items: center;
}

@media (max-width: 767.98px) {
  .member-row {
    grid-template-columns: 26px 110px minmax(0, 1fr) 34px;
  }

  .member-row__abbr {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .member-search > div {
    align-items: stretch;
    flex-direction: column;
  }

  .member-search input {
    min-height: 50px;
  }

  .member-row {
    grid-template-columns: 25px minmax(0, 1fr) 34px;
    min-height: 58px;
  }

  .member-row__country {
    display: none;
  }

  .member-row__name {
    white-space: normal;
  }
}

/* Cross-content recent updates */
.recent-updates {
  padding: 58px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.recent-updates__shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.recent-updates__heading h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.recent-updates__heading > p:last-child {
  max-width: 36rem;
  color: var(--muted);
}

.recent-updates__list {
  border-top: 1px solid var(--ink);
}

.recent-updates__list > a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 14px 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.recent-updates__list > a:hover strong {
  color: var(--red);
}

.recent-updates__type {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recent-updates__list small,
.recent-updates__list strong {
  display: block;
}

.recent-updates__list small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.recent-updates__list strong {
  font-size: 0.92rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

/* Publications and technical resources */
.resource-switcher {
  display: flex;
  gap: 10px;
  margin-bottom: 56px;
}

.resource-switcher a {
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.resource-switcher a:hover {
  background: var(--red);
}

.resource-group {
  margin-bottom: 72px;
  scroll-margin-top: 150px;
}

.resource-group:last-child {
  margin-bottom: 0;
}

.resource-empty {
  padding: 22px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

/* Photo galleries and event relationship */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 42px;
}

.photo-gallery-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.photo-gallery-card__image {
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  color: rgba(255, 255, 255, 0.65);
  background: var(--ink);
  place-items: center;
  text-decoration: none;
}

.photo-gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-gallery-card:hover .photo-gallery-card__image img {
  transform: scale(1.035);
}

.photo-gallery-card__body {
  padding: 24px;
}

.photo-gallery-card__body h2 {
  margin: 8px 0 14px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
}

.photo-gallery-card__body h2 a {
  color: var(--ink);
  text-decoration: none;
}

.photo-gallery-card__body > p:not(.card-meta) {
  color: var(--muted);
  font-size: 0.78rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.photo-grid > a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease, transform 0.35s ease;
}

.photo-grid a:hover img {
  opacity: 0.86;
  transform: scale(1.025);
}

.photo-grid a span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 0.7rem;
}

.gallery-lightbox {
  overflow: visible;
  width: min(96vw, 1500px);
  max-width: none;
  height: min(94vh, 1000px);
  max-height: none;
  padding: 0;
  color: var(--white);
  background: rgba(3, 9, 17, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.gallery-lightbox::backdrop {
  background: rgba(3, 9, 17, 0.92);
  backdrop-filter: blur(5px);
}

.gallery-lightbox__toolbar {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 8px 12px 8px 22px;
  background: linear-gradient(rgba(3, 9, 17, 0.94), transparent);
  pointer-events: none;
}

.gallery-lightbox__toolbar span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gallery-lightbox__toolbar button,
.gallery-lightbox__nav {
  display: grid;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  place-items: center;
}

.gallery-lightbox__toolbar button {
  width: 42px;
  height: 42px;
  font-size: 1.75rem;
  line-height: 1;
}

.gallery-lightbox__toolbar button:hover,
.gallery-lightbox__toolbar button:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.gallery-lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 64px 76px 54px;
  place-items: center;
}

.gallery-lightbox figure img {
  display: block;
  max-width: 100%;
  max-height: calc(94vh - 118px);
  object-fit: contain;
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox figcaption {
  position: absolute;
  right: 70px;
  bottom: 14px;
  left: 70px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-lightbox__nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--previous {
  left: 14px;
}

.gallery-lightbox__nav--next {
  right: 14px;
}

.event-documents {
  margin-top: 58px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.event-documents h2,
.event-galleries h2 {
  margin: 10px 0 24px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.event-document-list {
  display: grid;
  gap: 9px;
}

.event-document-list > a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 10px 18px 10px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
}

.event-document-list > a:hover,
.event-document-list > a:focus-visible {
  border-color: var(--red);
  box-shadow: 0 10px 26px rgba(7, 17, 31, 0.08);
}

.event-document-list__type {
  display: grid;
  align-self: stretch;
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  place-items: center;
}

.event-document-list strong,
.event-document-list small {
  display: block;
}

.event-document-list strong {
  font-size: 0.92rem;
}

.event-document-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.event-document-list > a > span:last-child {
  color: var(--red);
  font-size: 1.3rem;
  text-align: right;
}

.event-galleries {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.event-gallery-block + .event-gallery-block {
  margin-top: 48px;
}

.event-gallery-block h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.event-gallery-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-gallery-links > a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 96px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
}

.event-gallery-links img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
}

.event-gallery-links a > span {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.event-gallery-links small {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Officers */
.officers-inner-hero {
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.97), rgba(17, 30, 49, 0.84)),
    url("../img/wkc-hero.png") center 38% / cover;
}

.officer-group + .officer-group {
  margin-top: 92px;
}

.officer-group__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.officer-group__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.officer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.officer-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.officer-card__portrait {
  display: grid;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  place-items: center;
}

.officer-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.officer-card:hover .officer-card__portrait img {
  transform: scale(1.025);
}

.officer-card__body {
  padding: 22px;
}

.officer-card__position {
  min-height: 2.5em;
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.officer-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.12;
}

.officer-card__credentials {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.officer-card__country {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.officer-card__country img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(8, 25, 43, 0.14);
}

@media (max-width: 991.98px) {
  .recent-updates__shell {
    grid-template-columns: 1fr;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 575.98px) {
  .recent-updates__list > a {
    grid-template-columns: 74px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .photo-gallery-grid,
  .event-gallery-links {
    grid-template-columns: 1fr;
  }

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

  .event-document-list > a {
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    gap: 10px;
    padding-right: 12px;
    padding-left: 8px;
  }

  .gallery-lightbox {
    width: 100vw;
    height: 100dvh;
    border: 0;
  }

  .gallery-lightbox figure {
    padding: 62px 10px 82px;
  }

  .gallery-lightbox figure img {
    max-height: calc(100dvh - 144px);
  }

  .gallery-lightbox figcaption {
    right: 58px;
    bottom: 18px;
    left: 58px;
  }

  .gallery-lightbox__nav {
    top: auto;
    bottom: 14px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .gallery-lightbox__nav--previous {
    left: 10px;
  }

  .gallery-lightbox__nav--next {
    right: 10px;
  }

  .event-gallery-links > a {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .officer-group + .officer-group {
    margin-top: 64px;
  }

  .officer-group__heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .officer-grid {
    grid-template-columns: 1fr;
  }
}
.prose figure.media-image { max-width: 100%; }
.prose figure.media-image--small { width: 32%; }
.prose figure.media-image--medium { width: 50%; }
.prose figure.media-image--large { width: 72%; }
.prose figure.media-image--full { width: 100%; }
.prose figure.media-image--left { float: left; margin: 8px 24px 20px 0; }
.prose figure.media-image--right { float: right; margin: 8px 0 20px 24px; }
.prose figure.media-image--center { margin: 24px auto; }
.prose figure.media-image img { display: block; width: 100%; height: auto; object-fit: contain; }
.prose figure.media-image figcaption { margin-top: 8px; color: var(--muted); font-size: .78rem; text-align: center; }
.prose::after { display: block; clear: both; content: ""; }

.post-gallery-section { margin-top: 44px; }
.post-photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.post-photo-grid > a { position: relative; overflow: hidden; display: block; min-height: 160px; color: inherit; background: #f3f4f5; border: 1px solid var(--line); text-decoration: none; }
.post-photo-grid img { display: block; width: 100%; height: 190px; padding: 8px; object-fit: contain; }
.post-photo-grid span { display: block; padding: 10px 12px; font-size: .78rem; }
.post-gallery-lightbox { width: min(1120px, calc(100vw - 32px)); height: min(860px, calc(100vh - 32px)); padding: 0; color: #fff; background: rgba(4, 15, 27, .98); border: 0; }
.post-gallery-lightbox::backdrop { background: rgba(0, 0, 0, .82); }
.post-gallery-lightbox figure { width: 100%; height: calc(100% - 52px); display: grid; grid-template-rows: minmax(0, 1fr) auto; place-items: center; margin: 0; padding: 18px 68px 28px; }
.post-gallery-lightbox figure img { max-width: 100%; max-height: 100%; object-fit: contain; }
.post-gallery-lightbox figcaption { padding-top: 12px; font-size: .85rem; }
.post-gallery-lightbox__toolbar { height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; }
.post-gallery-lightbox__toolbar button { color: #fff; background: transparent; border: 0; font-size: 2rem; }
.post-gallery-lightbox__nav { position: absolute; z-index: 2; width: 48px; height: 64px; top: 50%; color: #fff; background: rgba(255,255,255,.1); border: 0; font-size: 2.6rem; transform: translateY(-50%); }
.post-gallery-lightbox__nav--previous { left: 10px; }
.post-gallery-lightbox__nav--next { right: 10px; }

@media (max-width: 850px) {
  .post-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .prose figure.media-image { float: none; width: 100%; margin: 20px auto; }
  .post-photo-grid { grid-template-columns: 1fr; }
  .post-gallery-lightbox figure { padding-inline: 48px; }
}
