:root {
  --ink-950: #08111f;
  --ink-900: #10233d;
  --ink-800: #18345b;
  --azure-600: #1f6fff;
  --azure-400: #5ea5ff;
  --sand-100: #f7f0e3;
  --paper: #fffaf2;
  --white: #ffffff;
  --text-main: #f8fbff;
  --text-soft: #d6e4fb;
  --text-muted: #9db6d8;
  --border: rgba(31, 111, 255, 0.18);
  --shadow: 0 24px 80px rgba(3, 8, 18, 0.34);
  --radius-xl: 0;
  --radius-lg: 0;
  --radius-md: 0;
  --radius-sm: 0;
  --container: 1120px;
  --sticky-offset: 96px;
}

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

html {
  scroll-behavior: smooth;
}

#top,
.section[id] {
  scroll-margin-top: var(--sticky-offset);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: none;
  color: var(--text-main);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: #000000;
  border-bottom: 1px solid rgba(255, 250, 242, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 24px 0;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(42vw, 320px);
  object-fit: contain;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1rem 1.15rem;
  background: #000000;
  border-top: 1px solid rgba(255, 250, 242, 0.08);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: var(--text-soft);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background: transparent;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.88) 0%, rgba(8, 17, 31, 0.76) 42%, rgba(8, 17, 31, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.22) 0%, rgba(8, 17, 31, 0.5) 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
  transform-origin: center center;
}

.hero-inner {
  display: grid;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.agenda-day-label,
.detail-label {
  margin: 0;
  color: var(--azure-400);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 11ch;
  margin-top: 1rem;
  font-size: clamp(3.2rem, 9vw, 6.3rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-tagline {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: var(--text-soft);
  font-size: 1.2rem;
  line-height: 1.65;
}

.hero-lead,
.agenda-day-summary,
.prepare-note,
.card-kicker {
  font-family: Arial, sans-serif;
}

.hero-lead {
  max-width: 40rem;
  margin: 1.15rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-metrics {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-metrics article {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 250, 242, 0.09);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.03));
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--paper);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics span {
  color: var(--text-soft);
  font-family: Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.6;
}

.event-card,
.agenda-day,
.content-card,
.person-card {
  border: 1px solid var(--border);
  box-shadow: none;
}

.event-card,
.agenda-day {
  background: rgba(8, 17, 31, 0.88);
}

.event-card {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding: 1.55rem;
  border-radius: var(--radius-xl);
}

.event-card::after {
  content: "";
  position: absolute;
  inset: auto 1.55rem 1.55rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 165, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.card-kicker {
  margin: 0;
  color: var(--azure-400);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-card-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.detail-group p {
  margin: 0.25rem 0 0;
  color: var(--text-main);
  line-height: 1.6;
}

.detail-group p:not(.detail-label):last-child {
  color: var(--text-soft);
}

.detail-group-accent {
  padding-top: 0.2rem;
  border-top: 1px solid rgba(255, 250, 242, 0.09);
}

.section {
  padding: 1.5rem 0 0;
}

.section-agenda,
.section-themes,
.section-prepare,
.section-facilitators,
.section-participants,
.section-library {
  margin-top: 3.25rem;
  padding: 3.5rem 0;
  background: var(--white);
  color: var(--ink-950);
}

.section + .section {
  padding-top: 3.25rem;
}

.section-heading {
  display: block;
  width: 100%;
  margin-bottom: 1.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.section-heading-copy {
  display: grid;
}

.section-title {
  margin-top: 0.45rem;
  color: var(--ink-950);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-caret {
  flex: 0 0 auto;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--azure-600);
  border-bottom: 2px solid var(--azure-600);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.section-toggle[aria-expanded="false"] .section-caret {
  transform: rotate(-45deg);
}

.section-content {
  display: block;
}

.section-toggle[aria-expanded="false"] + .section-content {
  display: none;
}

.section-heading h2 {
  margin-bottom: 1.4rem;
  margin-top: 0.45rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.agenda-grid,
.facilitator-grid {
  display: grid;
  gap: 1rem;
}

.agenda-day,
.content-card,
.person-card {
  border-radius: var(--radius-md);
}

.agenda-day {
  padding: 1.3rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.section-agenda .section-kicker,
.section-themes .section-kicker,
.section-prepare .section-kicker,
.section-facilitators .section-kicker,
.section-participants .section-kicker,
.section-library .section-kicker {
  color: var(--azure-600);
}

.section-agenda .section-heading h2,
.section-themes .section-heading h2,
.section-prepare .section-heading h2,
.section-participants .section-heading h2,
.section-facilitators .section-heading h2,
.section-library .section-heading h2,
.section-facilitators .person-card h3 {
  color: var(--ink-950);
}

.section-agenda .agenda-day {
  background: #ffffff;
  border: 1px solid rgba(16, 35, 61, 0.1);
  box-shadow: none;
}

.section-agenda .agenda-day-label,
.section-agenda .time {
  color: var(--azure-600);
}

.section-agenda .agenda-day-heading h3,
.section-agenda .topic {
  color: var(--ink-950);
}

.section-agenda .agenda-day-summary {
  color: var(--ink-800);
}

.section-agenda .agenda-list li {
  border-bottom: 1px solid rgba(16, 35, 61, 0.08);
}

.agenda-day:hover,
.person-card:hover,
.content-card:hover,
.resource-link:hover,
.resource-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(94, 165, 255, 0.34);
}

.agenda-day-heading {
  margin-bottom: 1rem;
}

.agenda-day-heading h3 {
  margin-top: 0.35rem;
  font-size: 1.55rem;
}

.agenda-day-summary {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.agenda-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agenda-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 0.85rem 0 0.9rem;
  border-bottom: 1px solid rgba(255, 250, 242, 0.08);
}

.agenda-list li:first-child {
  padding-top: 0;
}

.agenda-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.time {
  color: var(--sand-100);
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.topic {
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.45;
}

.content-card,
.person-card {
  padding: 1.35rem;
  background: #ffffff;
  border: 0;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.themes-intro-card {
  margin-bottom: 1rem;
}

.intro-copy {
  margin: 0 0 1rem;
  color: var(--ink-800);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.themes-intro-card .intro-copy {
  margin-bottom: 0;
}

.themes-intro-copy {
  margin-bottom: 1rem;
}

.themes-grid {
  display: grid;
  gap: 1rem;
}

.theme-card {
  padding: 1.35rem;
  border: 1px solid rgba(16, 35, 61, 0.1);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theme-card:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 165, 255, 0.34);
}

.theme-team-label,
.theme-question-label {
  margin: 0;
  color: var(--azure-600);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-card h3 {
  margin-top: 0.45rem;
  color: var(--ink-950);
  font-size: 1.5rem;
  line-height: 1.15;
}

.theme-description,
.theme-question {
  margin: 0.9rem 0 0;
  color: var(--ink-800);
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
}

.theme-question-label {
  margin-top: 1rem;
}

.bullet-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-main);
  font-family: Arial, sans-serif;
}

.bullet-list li {
  line-height: 1.6;
}

.resource-list {
  display: grid;
  gap: 0.9rem;
}

.resource-link {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(16, 35, 61, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(31, 111, 255, 0.04);
  font-family: Arial, sans-serif;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.resource-link:hover,
.resource-link:focus-visible {
  background: rgba(31, 111, 255, 0.07);
}

.resource-link-featured {
  background: linear-gradient(135deg, rgba(31, 111, 255, 0.1), rgba(8, 17, 31, 0.06));
}

.resource-embed {
  width: 100%;
  max-width: 624px;
  aspect-ratio: 624 / 351;
  border-radius: 12px;
  overflow: hidden;
}

.resource-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.resource-copy {
  display: grid;
  gap: 0.28rem;
}

.resource-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.24rem 0.55rem;
  background: var(--azure-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-label {
  color: var(--ink-950);
  font-size: 1rem;
  font-weight: 700;
}

.resource-source {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--azure-600);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-meta {
  color: var(--ink-800);
  font-size: 0.95rem;
  line-height: 1.5;
}

.library-section {
  margin-top: 1.5rem;
}

.library-title {
  margin: 0 0 0.8rem;
  color: var(--ink-950);
  font-size: 1.15rem;
  line-height: 1.2;
}

.location-link {
  color: var(--text-soft);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.18em;
}

.location-link:hover,
.location-link:focus-visible {
  color: var(--white);
}

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

.participants-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.person-card {
  overflow: hidden;
  padding-top: 0;
  text-align: center;
}

.facilitator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.facilitator-card .avatar-photo {
  width: 100%;
  margin: 0 0 1rem;
  align-self: stretch;
  object-position: center center;
}

.facilitator-card h3,
.facilitator-card p {
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 1.35rem;
}

.participant-card {
  padding: 1rem;
}

.participant-card h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.participant-card p {
  margin-top: 0.35rem;
  font-size: 0.93rem;
  line-height: 1.45;
}

.participant-location {
  color: var(--azure-600);
  font-weight: 700;
}

.avatar {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid rgba(31, 111, 255, 0.22);
  background:
    radial-gradient(circle at 30% 30%, rgba(94, 165, 255, 0.24), transparent 35%),
    linear-gradient(180deg, rgba(31, 111, 255, 0.72), rgba(16, 35, 61, 0.9));
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.avatar-photo {
  display: block;
  width: calc(100% + 2.7rem);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 -1.35rem 1rem;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center 18%;
  background: #d9e4f7;
}

.participant-avatar {
  width: 6.5rem;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto 0.9rem;
  border: 0;
  border-radius: 1rem;
  object-position: center 20%;
}

.person-card h3 {
  font-size: 1.45rem;
}

.person-card p {
  margin: 0.45rem 0 0;
  color: var(--ink-800);
  font-family: Arial, sans-serif;
  line-height: 1.55;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 35, 61, 0.16);
  background: #ffffff;
  color: var(--ink-950);
  box-shadow: none;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: var(--azure-600);
  background: #f4f8ff;
}

.scroll-top-icon {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg) translate(2px, 2px);
}

.subpage-body {
  background:
    radial-gradient(circle at top left, rgba(94, 165, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #07101d 0%, #0b1730 44%, #ffffff 44%, #ffffff 100%);
}

.subpage-main {
  min-height: 100vh;
}

.subpage-hero {
  padding: 4.5rem 0 3rem;
}

.subpage-hero-inner {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.subpage-hero-copy {
  width: 100%;
  max-width: none;
}

.subpage-title {
  max-width: none;
}

.subpage-lead,
.subpage-supporting-copy,
.tool-copy,
.tool-copy-block p,
.workflow-list span,
.checklist li {
  font-family: Arial, sans-serif;
}

.subpage-lead {
  max-width: none;
  margin: 1.2rem 0 0;
  color: var(--text-soft);
  font-size: 1.15rem;
  line-height: 1.65;
}

.subpage-supporting-copy {
  max-width: none;
  margin: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-tooling {
  margin-top: 2rem;
  padding: 3rem 0 4.5rem;
  background: #ffffff;
  color: var(--ink-950);
}

.subpage-intro {
  margin-bottom: 1.25rem;
}

.tool-grid {
  display: grid;
  gap: 1rem;
}

.tool-card {
  padding: 1.35rem;
  border: 1px solid rgba(16, 35, 61, 0.1);
  background: #ffffff;
}

.tool-card-header h2 {
  margin-top: 0.4rem;
  color: var(--ink-950);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.tool-copy {
  margin: 1rem 0 0;
  color: var(--ink-800);
  font-size: 1rem;
  line-height: 1.7;
}

.tool-copy-block {
  margin-top: 1.2rem;
}

.tool-copy-block h3 {
  color: var(--ink-950);
  font-size: 1.05rem;
}

.tool-copy-block p {
  margin: 0.45rem 0 0;
  color: var(--ink-800);
  line-height: 1.65;
}

.tool-resource-list {
  margin-top: 1rem;
}

.tool-link-list,
.workflow-list,
.checklist {
  display: grid;
  gap: 0.8rem;
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
}

.tool-link-list li,
.workflow-list li,
.checklist li {
  color: var(--ink-800);
  line-height: 1.6;
}

.tool-link-list a,
.checklist a {
  color: var(--azure-600);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.workflow-list strong {
  display: block;
  color: var(--ink-950);
  margin-bottom: 0.2rem;
}

.checklist-card {
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  background: rgba(31, 111, 255, 0.04);
  border: 1px solid rgba(16, 35, 61, 0.08);
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
}

.checklist-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  margin: 0.28rem 0 0;
  border: 1.5px solid rgba(31, 111, 255, 0.55);
  background: #ffffff;
  cursor: pointer;
}

.checklist-checkbox:checked {
  background:
    linear-gradient(135deg, transparent 43%, var(--azure-600) 43%, var(--azure-600) 57%, transparent 57%),
    linear-gradient(45deg, transparent 58%, var(--azure-600) 58%, var(--azure-600) 72%, transparent 72%),
    #ffffff;
  border-color: var(--azure-600);
}

.checklist-label {
  color: var(--ink-800);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.checklist-label a {
  color: var(--azure-600);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.checklist-checkbox + .checklist-label,
.checklist-checkbox + .checklist-label a {
  cursor: pointer;
}

@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  :root {
    --sticky-offset: 112px;
  }

  .hero {
    padding: 5.5rem 0 4rem;
  }

  .subpage-hero {
    padding: 5.5rem 0 3.5rem;
  }

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

  .agenda-list li {
    grid-template-columns: minmax(9rem, 10.5rem) 1fr;
    align-items: start;
    gap: 1rem;
  }

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

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

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

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

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: inline-flex;
    left: auto;
    right: auto;
    width: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;
    padding: 0;
    background: transparent;
    border-top: 0;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(20rem, 0.75fr);
    align-items: end;
  }

  .subpage-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

  .section-agenda,
  .section-themes,
  .section-prepare,
  .section-facilitators,
  .section-participants,
  .section-library {
    margin-top: 4.25rem;
  }

  .section + .section {
    padding-top: 4.25rem;
  }
}
