/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  color-scheme: light;
  /* Color system */
  --bg: #F5F7F8;
  --bg-rgb: 245, 247, 248;
  --surface: #FFFFFF;
  --surface-rgb: 255, 255, 255;
  --surface-soft: #EEF3F5;
  --surface-muted: #DDE6EA;
  --text: #15262E;
  --text-soft: #34454E;
  --muted: #63727A;
  --rule: #CBD6DC;
  --rule-strong: #9DAEB8;
  --brand: #123247;
  --brand-rgb: 18, 50, 71;
  --brand-2: #0D5C73;
  --brand-2-rgb: 13, 92, 115;
  --brand-link: #006D80;
  --brand-link-dark: #004E5D;
  --accent: #E8752A;
  --accent-rgb: 232, 117, 42;
  --accent-strong: #C7501F;
  --accent-hover: #A9421E;
  --accent-dark: var(--brand-link-dark);
  --accent-warm: #FBE7D7;
  --accent-wash: var(--surface-soft);
  --hero-text: var(--surface);
  --hero-page-fade: rgba(var(--surface-rgb), 0.96);
  --footer-bg: var(--brand);
  --footer-text: var(--bg);
  --code-bg: var(--surface-soft);
  --code-text: var(--brand-2);
  --navbar-bg: var(--surface);
  --navbar-shadow: 0 1px 18px rgba(var(--brand-rgb), 0.08);
  --footer-icon-bg: rgba(var(--surface-rgb), 0.16);
  --callout-border: var(--accent-strong);
  --image-tone-overlay: linear-gradient(0deg, rgba(var(--accent-rgb), 0.035), rgba(var(--brand-rgb), 0.055));
  --shadow: 0 18px 45px rgba(var(--brand-rgb), 0.12);
  --shadow-soft: 0 8px 24px rgba(var(--brand-rgb), 0.08);
  --shadow-menu: 0 14px 34px rgba(var(--brand-rgb), 0.15);
  /* Layout and spacing scale */
  --container-max: 70rem;
  --content-max: 57.5rem;
  --nav-height: 4rem;
  --page-gutter: 1rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 2rem;
  --space-8: 2.5rem;
  --space-9: 3rem;
  --space-10: 4rem;
  /* Shared controls and type */
  --radius: 6px;
  --radius-tight: 4px;
  --radius-pill: 999px;
  --border: 1px solid var(--rule);
  --border-strong: 1px solid var(--rule-strong);
  --edge-width: 4px;
  --focus-ring: 3px solid var(--accent-strong);
  --underline-thickness: 0.08em;
  --underline-offset: 0.16em;
  --control-height: 2.75rem;
  --icon-size: 2.25rem;
  --avatar-size: 4.5rem;
  --anchor-offset: calc(var(--nav-height) + var(--space-4));
  --font-size-xs: 0.78rem;
  --font-size-sm: 0.875rem;
  --font-size-ui: 0.9375rem;
  --font-size-base: 1rem;
  --font-size-body: 1.0625rem;
  --font-size-lead: 1.125rem;
  --font-size-h4: 1.125rem;
  --font-size-h3: 1.35rem;
  --font-size-h2: 1.7rem;
  --font-size-h1: 2.25rem;
  --font-size-page-title: 2.5rem;
  --line-tight: 1.12;
  --line-snug: 1.35;
  --line-base: 1.55;
  --line-prose: 1.68;
  --body-font: 'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-font: 'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --prose-font: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --mono-font: 'Source Code Pro', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.topic-authors {
  --topic-accent: var(--accent);
  --topic-accent-soft: var(--accent-wash);
  --topic-accent-border: var(--rule-strong);
}

.topic-program {
  --topic-accent: var(--brand-2);
  --topic-accent-soft: var(--surface-soft);
  --topic-accent-border: var(--rule-strong);
}

.topic-attend {
  --topic-accent: var(--accent-strong);
  --topic-accent-soft: var(--accent-wash);
  --topic-accent-border: var(--rule-strong);
}

.topic-organization {
  --topic-accent: var(--accent-strong);
  --topic-accent-soft: var(--accent-wash);
  --topic-accent-border: var(--rule-strong);
}

/* ==========================================================================
   Base Layout
   ========================================================================== */
html {
  font-size: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
  overflow-wrap: break-word;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-size: var(--font-size-body);
  line-height: var(--line-base);
}

body > main {
  flex: 1;
}

.page-content-card {
  font-family: var(--prose-font);
  font-size: var(--font-size-body);
  line-height: var(--line-prose);
  padding: var(--space-7);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.page-content-card > :first-child {
  margin-top: 0;
}

.page-content-card > h2:first-child,
.page-content-card > h3:first-child {
  padding-top: 0;
  border-top: 0;
}

.page-content-card > :last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Typography and Prose
   ========================================================================== */
p {
  margin: var(--space-4) 0;
}

.page-content-card > p,
.lead-copy p {
  hyphenate-limit-chars: 12 5 5;
  hyphens: auto;
  overflow-wrap: normal;
  text-align: justify;
  text-align-last: start;
  text-justify: auto;
  text-wrap: pretty;
  word-break: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.25rem;
  color: var(--brand);
  font-family: var(--header-font);
  font-weight: 800;
  letter-spacing: 0;
  line-height: var(--line-tight);
  text-wrap: balance;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-h2);
}

h2::after {
  content: "";
  width: 3rem;
  height: 2px;
  display: block;
  margin-top: var(--space-2);
  border-radius: var(--radius-pill);
  background: var(--accent);
}

h3 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-h3);
}

h2 + p,
h3 + p {
  margin-top: var(--space-2);
}

main ul:not([class]),
main ol:not([class]) {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
}

main li:not([class]) + li:not([class]) {
  margin-top: var(--space-1);
}

main p + ul:not([class]),
main p + ol:not([class]) {
  margin-top: calc(-1 * var(--space-2));
}

p + h2,
ul + h2,
ol + h2,
table + h2,
nav + h2,
div + h2 {
  margin-top: var(--space-6);
}

p + h3,
ul + h3,
ol + h3,
table + h3 {
  margin-top: var(--space-5);
}

h4 {
  font-size: var(--font-size-h4);
}

a {
  color: var(--brand-link);
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
}

blockquote {
  padding-left: var(--space-4);
  border-left: var(--edge-width) solid var(--accent);
  color: var(--muted);
  font-family: var(--prose-font);
  font-style: italic;
}

blockquote p:first-child {
  margin-top: 0;
}

hr.small {
  max-width: 5.5rem;
  margin: var(--space-4) auto;
  border-width: 0.22rem;
  border-color: inherit;
  border-radius: var(--radius-tight);
}

hr:not(.small) {
  margin: var(--space-6) 0 var(--space-4);
  border: 0;
  border-top: var(--border);
  opacity: 1;
}

hr:not(.small) + h2 {
  margin-top: 0;
}

/* ==========================================================================
   Accessibility and Focus States
   ========================================================================== */
::selection {
  color: var(--surface);
  background: var(--brand-link);
  text-shadow: none;
}

html {
  scroll-padding-top: var(--anchor-offset);
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

:target::before {
  content: none;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2000;
  padding: var(--space-3) var(--space-4);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--brand);
  font-family: var(--header-font);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.15s ease-in-out;
}

.skip-link:focus {
  color: var(--brand);
  outline: var(--focus-ring);
  outline-offset: 2px;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
.navbar-toggler:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
}

main p a,
main li a {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: var(--underline-thickness);
  text-underline-offset: var(--underline-offset);
}

/* Component links that should behave like controls, not inline prose. */
.button-link,
.button-link:hover,
.button-link:focus,
.homepage-cta__item,
.homepage-cta__item:hover,
.homepage-cta__item:focus,
.navbar-custom a,
.navbar-custom a:hover,
.navbar-custom a:focus {
  text-decoration: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar-custom {
  min-height: var(--nav-height);
  padding: 0;
  border-bottom: 2px solid var(--brand);
  background: var(--navbar-bg);
  box-shadow: var(--navbar-shadow);
  font-family: var(--header-font);
}

.navbar-custom > .container-xl {
  min-height: var(--nav-height);
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.navbar-custom .navbar-brand {
  margin-right: var(--space-5);
  color: var(--brand);
  font-size: var(--font-size-lead);
  font-weight: 800;
  line-height: 1.5;
}

.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus {
  color: var(--brand-link);
}

.navbar-custom .navbar-nav {
  align-items: center;
  gap: var(--space-1);
}

.navbar-custom .nav-item {
  font-size: var(--font-size-ui);
}

.navbar-custom .nav-link {
  padding: var(--space-3);
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 -3px 0 transparent;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.25;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
  background: transparent;
  box-shadow: inset 0 -3px 0 var(--accent);
  color: var(--brand-link-dark);
}

.navbar-custom .nav-link.active,
.navbar-custom .nav-item.active > .nav-link,
.navbar-custom .dropdown-toggle.show {
  background: transparent;
  box-shadow: inset 0 -3px 0 var(--accent);
  color: var(--brand);
  text-decoration: none;
}

.navbar-custom .navbar-toggler {
  margin-left: auto;
  padding: var(--space-2) var(--space-3);
  border: var(--border);
  border-radius: var(--radius);
  color: var(--brand);
  font-size: 1rem;
}

.navbar-custom .navbar-toggler-icon {
  width: 1.35em;
  height: 1em;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-position: top, center, bottom;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

.navbar-custom .navbar-toggler:hover,
.navbar-custom .navbar-toggler:focus,
.navbar-custom .navbar-toggler[aria-expanded=true] {
  background: var(--surface-soft);
  color: var(--brand-link-dark);
}

.navbar-custom .dropdown-toggle::after {
  margin-left: var(--space-1);
  vertical-align: 0.12em;
}

.navbar-custom .dropdown-menu {
  min-width: 13.5rem;
  margin-top: var(--space-2);
  padding: var(--space-2);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-menu);
  font-size: var(--font-size-ui);
  text-align: left;
  word-break: normal;
}

.navbar-custom .dropdown-item {
  padding: var(--space-2) var(--space-3);
  border-bottom: 0;
  border-radius: var(--radius-tight);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.navbar-custom .dropdown-item:last-child {
  border-bottom: 0;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
  background: var(--surface-soft);
  color: var(--brand-link-dark);
}

.navbar-custom .dropdown-item.active {
  background: var(--surface-soft);
  color: var(--brand);
  font-weight: 800;
}

.navbar-custom .dropdown-item:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 2px;
}

/* ==========================================================================
   Page Headers and Hero Images
   ========================================================================== */
.intro-header {
  --hero-title-max: 42rem;
  --hero-copy-max: 39rem;
  --hero-compact-max: 34rem;
  --hero-rule-width: 4.75rem;
  --hero-rule-height: 3px;
  position: relative;
  margin: var(--space-4) 0 var(--space-7);
  background: var(--bg);
}

.intro-header .page-heading {
  text-align: left;
}

.intro-header .page-heading h1 {
  margin-top: 0;
  color: var(--brand);
  font-size: var(--font-size-page-title);
}

.intro-header .page-subheading {
  font-family: var(--header-font);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  margin: var(--space-3) 0 0;
  color: var(--text);
}

.intro-header.big-img {
  min-height: 27rem;
  display: flex;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: var(--space-8);
  border-bottom: var(--border);
  background-color: var(--bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro-header.big-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(var(--bg-rgb), 0.98) 0%, rgba(var(--bg-rgb), 0.92) 38%, rgba(var(--bg-rgb), 0.56) 58%, rgba(var(--bg-rgb), 0.08) 100%), var(--image-tone-overlay);
}

.intro-header.big-img::after {
  content: none;
}

.intro-header.big-img .container-md {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.intro-header.big-img .container-md > .row {
  width: 100%;
  flex: 1 0 auto;
  margin-right: 0;
  margin-left: 0;
}

.intro-header.big-img .page-heading {
  padding: calc(var(--space-10) + var(--space-4)) 0;
  color: var(--text);
  text-align: left;
  text-shadow: none;
}

.intro-header.big-img .page-heading h1 {
  max-width: var(--hero-title-max);
  color: var(--brand);
  font-size: 3.35rem;
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
}

.intro-header.big-img .page-subheading {
  max-width: var(--hero-copy-max);
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
}

.intro-header.big-img .page-heading hr {
  margin-left: 0;
  border-color: var(--accent);
  box-shadow: none;
}

@media (min-width: 768px) {
  .intro-header.big-img.home-hero {
    background-position: center 55%;
  }
}
.intro-header.big-img.decorative-hero {
  min-height: 15rem;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: var(--space-7);
  border-top: var(--border);
  border-bottom: var(--border);
  background-position: center 52%;
}

.intro-header.big-img.decorative-hero::before {
  z-index: 0;
  background: linear-gradient(90deg, rgba(var(--bg-rgb), 0.97) 0%, rgba(var(--bg-rgb), 0.84) 32%, rgba(var(--bg-rgb), 0.44) 58%, rgba(var(--bg-rgb), 0.06) 82%), var(--image-tone-overlay);
}

.intro-header.big-img.decorative-hero::after {
  content: none;
}

.intro-header.big-img.decorative-hero .container-md {
  z-index: 2;
}

.intro-header.big-img.decorative-hero .page-heading {
  position: relative;
  z-index: 0;
  max-width: var(--hero-title-max);
  padding: var(--space-9) 0;
  color: var(--text);
  text-shadow: none;
}

.intro-header.big-img.decorative-hero .page-heading::after {
  content: none;
}

.intro-header.big-img.decorative-hero .page-heading::before {
  content: "";
  width: var(--hero-rule-width);
  height: var(--hero-rule-height);
  display: block;
  margin-bottom: var(--space-3);
  border-radius: var(--radius-tight);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 86%, var(--brand-2) 86%, var(--brand-2) 100%);
  box-shadow: none;
}

.intro-header.big-img.decorative-hero .page-heading h1 {
  max-width: var(--hero-compact-max);
  color: var(--brand);
  font-size: 2.45rem;
  line-height: 1;
}

.intro-header.big-img.decorative-hero .page-subheading {
  max-width: var(--hero-compact-max);
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.intro-header.big-img.decorative-hero[style*=amsterdam-canal] {
  background-position: center 80%;
}

.intro-header.big-img.decorative-hero[style*=kit-royal-tropical-institute] {
  background-position: center 48%;
}

.intro-header.big-img.decorative-hero[style*=tulips] {
  background-position: center 46%;
}

.intro-header.big-img.decorative-hero[style*=windmill] {
  background-position: center 42%;
}

.decorative-hero-main {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.decorative-hero-main .page-content-card {
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   Homepage Editorial Hero
   ========================================================================== */
.home-hero {
  --home-hero-content-max: calc((100vw - var(--container-max)) / 2 + 42rem);
  --home-hero-copy-max: 34rem;
  --home-hero-media-max: 58.75rem;
  --home-hero-rule-width: 6rem;
  --home-hero-grid-size: 6rem;
  width: 100%;
  max-width: none;
  margin: 0 0 var(--space-7);
  padding: 0;
}

.home-hero__card {
  position: relative;
  min-height: 27rem;
  isolation: isolate;
  overflow: hidden;
  border-top: var(--border);
  border-right: 0;
  border-bottom: var(--border);
  border-left: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 42%, rgba(var(--bg-rgb), 0.86) 58%, rgba(var(--bg-rgb), 0.18) 80%, rgba(var(--bg-rgb), 0.04) 100%), var(--surface-soft);
  box-shadow: none;
}

.home-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(112deg, transparent 0%, transparent 61%, rgba(var(--accent-rgb), 0.08) 61.2%, transparent 61.6%), repeating-linear-gradient(90deg, transparent 0, transparent var(--home-hero-grid-size), rgba(var(--brand-2-rgb), 0.055) var(--home-hero-grid-size), rgba(var(--brand-2-rgb), 0.055) calc(var(--home-hero-grid-size) + 1px)), repeating-linear-gradient(0deg, transparent 0, transparent var(--home-hero-grid-size), rgba(var(--accent-rgb), 0.025) var(--home-hero-grid-size), rgba(var(--accent-rgb), 0.025) calc(var(--home-hero-grid-size) + 1px));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.home-hero__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 58%, var(--accent) 82%, rgba(var(--accent-rgb), 0) 100%);
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--home-hero-content-max);
  padding: clamp(var(--space-8), 5vw, 4.5rem) clamp(var(--space-7), 4vw, 3.75rem) clamp(var(--space-8), 5vw, 4.5rem) max(var(--page-gutter), (100vw - var(--container-max)) / 2 + var(--page-gutter));
  background: linear-gradient(90deg, rgba(var(--bg-rgb), 0.98) 0%, rgba(var(--bg-rgb), 0.94) 76%, rgba(var(--bg-rgb), 0) 100%);
}

.home-hero__content::before {
  content: "";
  width: var(--home-hero-rule-width);
  height: 3px;
  display: block;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-tight);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 86%, var(--brand-2) 86%, var(--brand-2) 100%);
}

.home-hero h1 {
  margin: 0;
  color: var(--brand);
  font-family: var(--header-font);
  font-size: clamp(3.6rem, 8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
}

.home-hero__subtitle {
  max-width: 39rem;
  margin: var(--space-4) 0 0;
  color: var(--text);
  font-family: var(--header-font);
  font-size: clamp(1.2rem, 2.1vw, 1.62rem);
  font-weight: 600;
  line-height: 1.28;
}

.home-hero__copy {
  max-width: var(--home-hero-copy-max);
  margin: var(--space-6) 0 0;
  color: var(--text);
  font-family: var(--header-font);
  font-size: var(--font-size-lead);
  font-weight: 600;
  line-height: 1.55;
  text-wrap: pretty;
}

.home-hero__dateline {
  max-width: 37rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-5);
  margin: var(--space-6) 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--header-font);
}

.home-hero__date {
  min-width: 5.4rem;
  display: grid;
  gap: var(--space-1);
  padding-right: 0;
  border-right: 0;
  text-decoration: none;
}

.home-hero__dateline:hover,
.home-hero__dateline:focus-within {
  background: transparent;
}

.home-hero__date-month {
  color: var(--brand);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.home-hero__date-days {
  color: var(--text-soft);
  font-size: var(--font-size-ui);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.home-hero__place {
  min-width: 0;
  display: grid;
  gap: var(--space-1);
  text-decoration: none;
}

.home-hero__place-city {
  color: var(--brand);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.05;
}

.home-hero__place-detail {
  color: var(--text-soft);
  font-size: var(--font-size-ui);
  font-weight: 700;
  line-height: 1.35;
}

.home-hero__date:hover .home-hero__date-month,
.home-hero__date:focus .home-hero__date-month,
.home-hero__place:hover .home-hero__place-city,
.home-hero__place:focus .home-hero__place-city {
  color: var(--brand);
}

.home-hero__date:hover .home-hero__date-days,
.home-hero__date:focus .home-hero__date-days,
.home-hero__place:hover .home-hero__place-detail,
.home-hero__place:focus .home-hero__place-detail {
  color: var(--brand-link-dark);
}

.home-hero__media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(68vw, var(--home-hero-media-max));
  min-height: 0;
  background: var(--surface-soft);
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
}

.home-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(var(--bg-rgb), 0.82) 14%, rgba(var(--bg-rgb), 0.28) 40%, rgba(var(--bg-rgb), 0) 68%), var(--image-tone-overlay);
  pointer-events: none;
}

.home-main .page-content-card {
  border-top-color: var(--brand);
}

@media (max-width: 900px) {
  .home-hero__card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--bg);
  }
  .home-hero__card::before {
    opacity: 0.45;
  }
  .home-hero__content {
    max-width: none;
    background: var(--bg);
  }
  .home-hero__media {
    position: relative;
    inset: auto;
    order: -1;
    width: 100%;
    max-height: 17rem;
    overflow: hidden;
  }
  .home-hero__media img {
    height: 17rem;
    min-height: 17rem;
  }
  .home-hero__media::before {
    background: linear-gradient(0deg, var(--bg) 0%, rgba(var(--bg-rgb), 0.22) 72%), var(--image-tone-overlay);
  }
}
@media (max-width: 767px) {
  .home-hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding: var(--space-6);
  }
  .home-hero h1,
  .home-hero__subtitle,
  .home-hero__copy,
  .home-hero__dateline {
    width: 100%;
    max-width: calc(100vw - var(--space-9));
    min-width: 0;
    overflow-wrap: break-word;
  }
  .home-hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }
  .home-hero__dateline {
    gap: var(--space-4);
  }
  .home-hero__date {
    min-width: 7.6rem;
    padding-right: 0;
  }
}
@media (max-width: 520px) {
  .home-hero__content {
    padding: var(--space-5);
  }
  .home-hero__dateline {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  .home-hero__date {
    min-width: 0;
    padding-right: 0;
    border-right: 0;
  }
}
/* ==========================================================================
   Homepage CTAs and Important Dates
   ========================================================================== */
.homepage-cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0 0 var(--space-6);
}

.homepage-cta__item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-3);
  overflow: hidden;
  min-height: 5rem;
  padding: var(--space-3) var(--space-4);
  border: var(--border);
  border-top: 3px solid var(--topic-accent, var(--accent));
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  box-shadow: var(--shadow-soft);
}

.homepage-cta__item:hover,
.homepage-cta__item:focus {
  border-color: var(--topic-accent-border, var(--rule-strong));
  border-top-color: var(--topic-accent, var(--accent));
  background: var(--accent-wash);
  color: inherit;
}

.homepage-cta__item:hover .homepage-cta__title,
.homepage-cta__item:focus .homepage-cta__title {
  color: var(--brand);
}

.homepage-cta__icon,
.homepage-cta__content {
  position: relative;
  z-index: 1;
}

.homepage-cta__content {
  min-width: 0;
}

.homepage-cta__icon {
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-grid;
  place-items: center;
  border: var(--border);
  border-radius: 50%;
  background: var(--topic-accent-soft, var(--surface-muted));
  color: var(--accent-strong);
  font-size: var(--font-size-ui);
  line-height: 1;
}

.homepage-cta__title {
  font-family: var(--header-font);
  font-size: var(--font-size-ui);
  font-weight: 800;
  line-height: 1.2;
  display: block;
  color: var(--brand);
}

.homepage-cta__note {
  font-family: var(--header-font);
  font-size: var(--font-size-xs);
  font-weight: 600;
  line-height: var(--line-snug);
  display: block;
  color: var(--text-soft);
}

.homepage-cta__date {
  display: block;
  white-space: nowrap;
}

.lead-copy {
  font-family: var(--prose-font);
  font-size: var(--font-size-lead);
  line-height: var(--line-prose);
  margin: var(--space-6) 0;
  color: var(--text);
}

.lead-copy p {
  margin: 0 0 var(--space-4);
  text-wrap: pretty;
}

.lead-copy p:last-child {
  margin-bottom: 0;
}

.important-dates {
  margin: var(--space-7) 0;
  padding: var(--space-5) 0 0;
  border-top: var(--border-strong);
}

.important-dates h2 {
  margin: 0;
  padding-top: 0;
  border-top: 0;
}

.important-dates p {
  font-family: var(--header-font);
  font-size: var(--font-size-ui);
  font-weight: 600;
  line-height: var(--line-base);
  margin: var(--space-2) 0 var(--space-4);
  color: var(--muted);
}

.important-dates__group + .important-dates__group {
  margin-top: var(--space-6);
}

.important-dates h3 {
  margin: 0 0 var(--space-2);
  color: var(--brand);
  font-size: var(--font-size-body);
}

.important-dates__list {
  display: grid;
  gap: var(--space-3);
  margin: 0;
}

.important-dates__item {
  display: grid;
  grid-template-columns: minmax(12rem, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: var(--space-4);
  margin: 0;
  padding: var(--space-2) var(--space-3);
  border-left: var(--edge-width) solid transparent;
  border-radius: var(--radius-tight);
  color: inherit;
  text-decoration: none;
}

.important-dates__item:hover,
.important-dates__item:focus {
  border-left-color: var(--accent-strong);
  background: var(--accent-warm);
  color: inherit;
  text-decoration: none;
}

.important-dates__item:hover .important-dates__label,
.important-dates__item:focus .important-dates__label {
  color: var(--brand);
}

.important-dates__label,
.important-dates__value {
  font-family: var(--header-font);
  line-height: var(--line-snug);
}

.important-dates__label {
  color: var(--brand);
  font-weight: 800;
}

.important-dates__value {
  color: var(--text);
  font-weight: 500;
}

.important-dates__date {
  display: block;
}

.important-dates__note {
  display: inline-block;
  margin-top: var(--space-1);
  padding: 0.125rem var(--space-2);
  border: var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface-muted);
  color: var(--brand);
  font-size: var(--font-size-sm);
  font-weight: 700;
}

/* ==========================================================================
   Program Overview
   ========================================================================== */
.program-overview {
  margin: var(--space-7) 0 0;
  padding-top: var(--space-5);
  border-top: var(--border);
}

.program-overview h2 {
  margin: 0 0 var(--space-2);
  padding-top: 0;
  border-top: 0;
}

.program-overview p {
  font-family: var(--header-font);
  font-size: var(--font-size-ui);
  font-weight: 600;
  line-height: var(--line-base);
  margin: var(--space-2) 0 var(--space-5);
  color: var(--muted);
}

.program-overview__list {
  display: grid;
  gap: var(--space-3);
  margin: 0;
}

.program-overview__list > div {
  display: grid;
  grid-template-columns: minmax(12rem, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: var(--space-4);
  margin: 0;
  padding: var(--space-2) 0;
}

.program-overview__list > div:first-child {
  border-top: 0;
}

.program-overview__list dt,
.program-overview__list dd {
  margin: 0;
  font-family: var(--header-font);
  line-height: var(--line-snug);
}

.program-overview__list dt {
  color: var(--brand);
  font-weight: 800;
}

.program-overview__list dd {
  color: var(--text);
  font-weight: 500;
}

/* ==========================================================================
   Shared Components
   ========================================================================== */
.intro-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 var(--space-6);
  padding: var(--space-3) 0;
  border-top: var(--border);
  border-bottom: var(--border);
  font-family: var(--header-font);
}

.intro-facts > div {
  min-width: 0;
  display: grid;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  border-left: var(--border);
}

.intro-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.intro-facts dt,
.intro-facts dd {
  margin: 0;
}

.intro-facts dt {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--brand);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: var(--line-snug);
  text-transform: uppercase;
}

.intro-facts dt i {
  width: 1.1em;
  color: var(--accent-strong);
  font-size: 1rem;
  text-align: center;
}

.intro-facts dd {
  color: var(--text);
  font-size: var(--font-size-ui);
  font-weight: 700;
  line-height: var(--line-snug);
}

.browser-support-warning {
  position: fixed;
  top: 4rem;
  top: var(--nav-height);
  right: 0;
  left: 0;
  z-index: 1040;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #C7501F;
  background: #FBE7D7;
  color: #15262E;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.browser-support-warning strong {
  color: #123247;
  font-weight: 800;
}

.browser-support-warning--compat {
  display: none;
}

.site-browser-warning .browser-support-warning--compat {
  display: block;
}

.quick-link-directory {
  margin: var(--space-7) 0 0;
  padding-top: var(--space-5);
}

.quick-link-directory h2 {
  margin: 0 0 var(--space-4);
  padding-top: 0;
  border-top: 0;
}

.quick-link-directory__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.quick-link-directory__group {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(8rem, 0.32fr) minmax(0, 1fr);
  align-items: baseline;
  gap: var(--space-4);
  padding: 0;
}

.quick-link-directory__group h3 {
  margin: 0;
  color: var(--brand);
  font-size: var(--font-size-ui);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin: var(--space-6) 0 0;
}

.quick-link-directory .quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2) var(--space-4);
  grid-template-columns: none;
  margin: 0;
  border-top: 0;
}

.quick-link-directory .button-link {
  font-family: var(--header-font);
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: var(--line-snug);
  min-height: 0;
  display: inline-flex;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-link);
  text-align: left;
}

.quick-link-directory .button-link:hover,
.quick-link-directory .button-link:focus {
  background: transparent;
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: var(--underline-thickness);
  text-underline-offset: var(--underline-offset);
}

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

.button-link {
  font-family: var(--header-font);
  font-size: var(--font-size-sm);
  font-weight: 800;
  line-height: 1.2;
  min-height: var(--control-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--accent-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--accent-strong);
  text-align: center;
}

.button-link:hover,
.button-link:focus {
  border-color: var(--accent-strong);
  background: var(--accent-warm);
  color: var(--accent-strong);
}

.btn-primary,
.button-primary,
a.btn-primary {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: var(--surface);
}

.btn-primary:hover,
.btn-primary:focus,
.button-primary:hover,
.button-primary:focus,
a.btn-primary:hover,
a.btn-primary:focus {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  color: var(--surface);
}

.btn-secondary,
.button-secondary {
  border: 1px solid var(--accent-strong);
  background: transparent;
  color: var(--accent-strong);
}

.btn-secondary:hover,
.btn-secondary:focus,
.button-secondary:hover,
.button-secondary:focus {
  background: var(--accent-warm);
  color: var(--accent-strong);
}

.previous-conferences {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-family: var(--header-font);
  font-size: var(--font-size-sm);
  line-height: 1.4;
}

.previous-conferences span:first-child {
  font-weight: 700;
}

.previous-conferences a {
  color: var(--brand-link);
  font-weight: 800;
}

.callout {
  margin: var(--space-7) 0;
  padding: var(--space-4) var(--space-5);
  border: var(--border);
  border-left: var(--edge-width) solid var(--callout-border);
  border-radius: var(--radius);
  background: var(--accent-warm);
}

.callout__label {
  font-family: var(--header-font);
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: var(--line-snug);
  display: block;
  margin-bottom: var(--space-2);
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.callout p {
  margin: 0;
}

.deadline-date {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  display: inline;
  border-radius: var(--radius-tight);
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: var(--underline-thickness);
  text-underline-offset: var(--underline-offset);
  vertical-align: baseline;
  cursor: pointer;
}

.deadline-date:hover,
.deadline-date:focus {
  color: inherit;
  text-decoration-style: solid;
}

.deadline-date:focus-visible {
  outline: 0;
  background: transparent;
  box-shadow: none;
  text-decoration-color: var(--accent-strong);
  text-decoration-thickness: 0.12em;
}

.deadline-date-popover {
  --bs-popover-max-width: min(22rem, calc(100vw - 2rem));
  --bs-popover-border-width: 1px;
  --bs-popover-border-color: var(--rule);
  --bs-popover-header-bg: var(--surface);
  --bs-popover-header-color: var(--brand);
  --bs-popover-body-color: var(--text);
  --bs-popover-bg: var(--surface);
  --bs-popover-box-shadow: var(--shadow-menu);
  border: var(--border);
  box-shadow: var(--shadow-menu);
  font-family: var(--header-font);
  line-height: 1.4;
}

.deadline-date-popover .popover-header {
  font-family: var(--header-font);
  font-size: var(--font-size-sm);
  font-weight: 800;
  line-height: var(--line-snug);
  margin: 0;
  padding: var(--space-2) var(--space-3);
  border-bottom: var(--border);
  color: var(--brand);
}

.deadline-date-popover .popover-body {
  padding: var(--space-3);
}

/* ==========================================================================
   Organization Page
   ========================================================================== */
.organizer-grid,
.organizer-featured__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-7);
}

.legal-provider {
  margin: var(--space-6) 0 0;
  padding-top: var(--space-6);
  border-top: var(--border);
}

.organizer-featured {
  margin: 0 0 var(--space-7);
}

.legal-provider h2,
.organizer-role__title {
  margin: 0 0 var(--space-3);
  color: var(--brand);
  font-size: var(--font-size-ui);
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-provider p {
  margin: 0 0 var(--space-2);
}

.legal-provider address {
  margin: 0 0 var(--space-4);
  font-style: normal;
  line-height: var(--line-base);
}

.organizer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.organizer-role .organizer-list {
  display: grid;
  gap: var(--space-3);
}

.organizer-person--photo {
  display: grid;
  grid-template-columns: var(--avatar-size) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-4);
}

.organizer-photo {
  width: var(--avatar-size);
  aspect-ratio: 543/620;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--rule);
  background: var(--surface);
}

.organizer-person__details {
  min-width: 0;
}

.organizer-person__name {
  font-family: var(--header-font);
  font-size: var(--font-size-base);
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.organizer-person__name:hover,
.organizer-person__name:focus {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: var(--underline-thickness);
  text-underline-offset: var(--underline-offset);
}

.organizer-person__affiliation {
  font-family: var(--header-font);
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: var(--line-snug);
  display: block;
  margin-top: var(--space-1);
  color: var(--muted);
}

/* ==========================================================================
   Venue Page
   ========================================================================== */
.venue-note {
  color: var(--muted);
  font-size: var(--font-size-ui);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  margin-top: var(--space-9);
  padding: var(--space-7) 0;
  border-top: 1px solid var(--brand);
  background: var(--footer-bg);
  font-size: var(--font-size-sm);
}

footer p,
footer a,
footer .footer-links a {
  color: var(--footer-text);
}

footer a:hover,
footer a:focus {
  color: var(--accent-warm);
}

footer .list-inline {
  margin: 0 0 var(--space-5);
  padding: 0;
}

footer .list-inline-item {
  margin-bottom: var(--space-2);
}

footer .copyright {
  margin: var(--space-2) 0 0;
  text-align: center;
  font-family: var(--header-font);
}

footer .copyright:first-of-type {
  margin-top: 0;
}

.footer-links .fa-stack {
  width: 2em;
  border: 0;
  border-radius: 50%;
}

.footer-links .fa-circle {
  color: var(--footer-icon-bg);
  opacity: 1;
}

.footer-links .fa-inverse {
  color: var(--footer-text);
}

.footer-links a:hover .fa-circle,
.footer-links a:focus .fa-circle {
  color: var(--accent-strong);
}

.footer-links a:hover .fa-inverse,
.footer-links a:focus .fa-inverse {
  color: var(--surface);
}

/* ==========================================================================
   Markdown Tables and Code
   ========================================================================== */
table {
  width: 100%;
  border: 0;
  border-radius: 0;
  border-collapse: collapse;
  font-family: var(--header-font);
  table-layout: fixed;
}

table tr {
  margin: 0;
  padding: 0;
  background: transparent;
}

table tr:first-child {
  border-top: 0;
}

table tr:nth-child(2n) {
  background: transparent;
}

table th,
table td {
  margin: 0;
  padding: var(--space-2) 0;
  border: 0;
  line-height: var(--line-snug);
  text-align: left;
  vertical-align: top;
}

table th {
  font-family: var(--header-font);
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: var(--line-snug);
  background: transparent;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

table th + th,
table td + td {
  padding-left: var(--space-4);
}

table th:first-child,
table td:first-child {
  width: 38%;
}

table td:first-child {
  color: var(--brand);
  font-weight: 800;
}

table td:not(:first-child) {
  color: var(--text);
  font-weight: 500;
}

code {
  padding: 0.125rem var(--space-1);
  border-radius: var(--radius-tight);
  background: var(--code-bg);
  color: var(--code-text);
  font-family: var(--mono-font);
  font-size: 0.92em;
}

pre {
  padding: var(--space-3);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--code-bg);
  font-family: var(--mono-font);
  font-size: var(--font-size-sm);
  line-height: var(--line-base);
}

pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.highlight {
  margin: var(--space-6) 0;
}

.highlight pre {
  margin: 0;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (min-width: 768px) {
  footer {
    padding: var(--space-9) 0;
  }
  footer .footer-links,
  footer .copyright {
    font-size: var(--font-size-base);
  }
}
@media (min-width: 1200px) {
  .intro-header:not(.home-hero) {
    margin-top: var(--space-10);
  }
  .intro-header.big-img {
    min-height: 31rem;
    margin-top: 0;
  }
  .intro-header.big-img .page-heading {
    padding: calc(var(--space-10) + var(--space-7)) 0;
  }
  .intro-header .page-heading h1 {
    font-size: 3.25rem;
  }
  .intro-header.big-img .page-heading h1 {
    font-size: 4.6rem;
  }
}
@media (max-width: 1199px) {
  .navbar-custom > .container-xl {
    flex-wrap: nowrap;
    position: relative;
  }
  .navbar-custom .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    padding: var(--space-2) var(--space-4) var(--space-3);
    border-bottom: var(--border);
    background: var(--navbar-bg);
    box-shadow: var(--shadow-menu);
  }
  .navbar-custom .navbar-nav {
    align-items: stretch;
    gap: var(--space-1);
    padding-top: var(--space-2);
  }
  .navbar-custom .nav-link {
    padding: var(--space-3);
  }
  .navbar-custom .dropdown-menu {
    margin: var(--space-1) 0 var(--space-2);
    padding: var(--space-1) 0 var(--space-1) var(--space-3);
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .navbar-custom .dropdown-item {
    padding: var(--space-2) var(--space-3);
    white-space: normal;
  }
}
@media (max-width: 900px) {
  .homepage-cta {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .important-dates__item {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
  .intro-facts {
    grid-template-columns: 1fr;
  }
  .intro-facts > div {
    padding: var(--space-3) 0;
    border-top: var(--border);
    border-left: 0;
  }
  .intro-facts > div:first-child {
    padding-top: var(--space-1);
    border-top: 0;
  }
  .intro-facts > div:last-child {
    padding-bottom: var(--space-1);
  }
  .quick-link-directory__grid {
    grid-template-columns: 1fr;
  }
  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .program-overview__list > div {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
  .organizer-grid,
  .organizer-featured__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  body {
    font-size: var(--font-size-base);
  }
  html,
  body {
    overflow-x: hidden;
  }
  .intro-header:not(.home-hero):not(.big-img) {
    margin-top: var(--space-6);
    margin-bottom: var(--space-4);
  }
  main p a,
  main li a {
    overflow-wrap: break-word;
  }
  .intro-header.big-img {
    min-height: 23rem;
    background-position: center top;
  }
  .intro-header.big-img::before {
    background: linear-gradient(90deg, rgba(var(--bg-rgb), 0.97) 0%, rgba(var(--bg-rgb), 0.82) 45%, rgba(var(--bg-rgb), 0.36) 72%, rgba(var(--bg-rgb), 0.08) 100%), var(--image-tone-overlay);
  }
  .intro-header.big-img .page-heading {
    max-width: calc(100vw - var(--space-9));
    padding: calc(var(--space-10) + var(--space-2)) 0;
  }
  .intro-header .page-heading h1 {
    font-size: 2.25rem;
  }
  .intro-header.big-img .page-heading h1 {
    font-size: 2.6rem;
  }
  .intro-header .page-subheading {
    font-size: 1.15rem;
  }
  .intro-header.big-img .page-subheading {
    max-width: 21rem;
    font-size: 1.08rem;
    line-height: 1.32;
  }
  .intro-header.big-img.decorative-hero {
    min-height: 12.5rem;
  }
  .intro-header.big-img.decorative-hero .page-heading {
    padding: 2.15rem 0;
  }
  .intro-header.big-img.decorative-hero .page-heading h1 {
    font-size: 2rem;
  }
  .decorative-hero-main {
    margin-top: 0;
  }
  .page-content-card {
    width: 100%;
    max-width: calc(100vw - var(--space-7));
    overflow: hidden;
    padding: var(--space-4);
  }
  .lead-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 1.05rem;
    line-height: 1.62;
  }
  .lead-copy p {
    overflow-wrap: break-word;
    line-height: inherit;
  }
  .quick-links {
    gap: var(--space-3);
  }
  .quick-link-directory__group {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  .button-link {
    min-height: var(--control-height);
    padding-right: var(--space-3);
    padding-left: var(--space-3);
    font-size: var(--font-size-sm);
  }
  .organizer-person--photo {
    --avatar-size: 4rem;
  }
  table {
    display: block;
    overflow-x: auto;
    width: max-content;
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  table {
    table-layout: auto;
  }
  table th:first-child,
  table td:first-child {
    width: auto;
  }
  .quick-links {
    grid-template-columns: 1fr;
  }
  .quick-link-directory .quick-links {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=site.css.map */