/* Public course landings — polished theme-aligned styling */

body.gwac-landing-page #page-header,
body.gwac-landing-page .page-context-header,
body.gwac-landing-page #page-navbar,
body.gwac-landing-page .breadcrumb-nav,
body.gwac-landing-page nav[aria-label="Breadcrumb"],
body.gwac-landing-page .secondary-navigation {
  display: none !important;
}

/* Edge-to-edge content canvas (match frontpage breakout). */
body.gwac-landing-page {
  overflow-x: clip;
}

body.gwac-landing-page #page.drawers {
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: 0 !important;
  /* Keep Boost clearance under the fixed site navbar — do not zero this. */
  margin-top: max(var(--gwac-nav-height), var(--navbar-height, 60px)) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-inline: 0 !important;
}

body.gwac-landing-page #page.drawers .main-inner,
body.gwac-landing-page #topofscroll.main-inner {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: var(--gwac-bg);
  box-shadow: none !important;
  border: 0 !important;
  box-sizing: border-box;
  overflow: visible;
}

body.gwac-landing-page #region-main {
  padding: 0 !important;
  max-width: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.gwac-landing-page #region-main > .card,
body.gwac-landing-page #region-main > [role="main"],
body.gwac-landing-page #region-main > div:not(.gwac-landing) {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.gwac-landing {
  --landing-ease: cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  min-width: 0;
  color: var(--gwac-secondary);
  background: var(--gwac-bg);
  font-family: "Inter", "Public Sans", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: var(--gwac-text-body);
  line-height: 1.6;
}

/* Shared horizontal shell — same column as navbar / homepage */
.gwac-landing-nav__inner,
.gwac-landing-hero__inner,
.gwac-landing-section,
.gwac-landing-section__frame,
.gwac-landing-schedule,
.gwac-landing-stats__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--gwac-gutter-x);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .gwac-landing-nav__inner,
  .gwac-landing-hero__inner,
  .gwac-landing-section,
  .gwac-landing-section__frame,
  .gwac-landing-schedule,
  .gwac-landing-stats__inner {
    padding-inline: var(--gwac-shell-pad-x);
  }
}

/* —— Secondary tabs —— */
.gwac-landing-nav {
  position: sticky;
  /* Sit just below the fixed site navbar (taller when logged in). */
  top: max(var(--gwac-nav-height), var(--navbar-height, 60px));
  z-index: 1020;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(32, 43, 93, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(1.2);
}

.gwac-landing-nav__inner {
  min-height: var(--gwac-moremenu-height, 3.5rem);
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding-block: 0;
}

.gwac-landing-nav__tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.gwac-landing-nav__tabs::-webkit-scrollbar {
  display: none;
}

.gwac-landing-nav__tabs li {
  display: flex;
  flex: 0 0 auto;
}

.gwac-landing-nav__tabs a {
  display: flex;
  align-items: center;
  padding: 0 clamp(0.85rem, 1vw, 1.25rem);
  color: #475569;
  text-decoration: none;
  font-size: var(--gwac-text-body);
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.gwac-landing-nav__tabs a:hover {
  color: var(--gwac-secondary);
  background: rgba(32, 43, 93, 0.04);
}

.gwac-landing-nav__tabs a.is-active {
  color: var(--gwac-secondary);
  border-bottom-color: var(--gwac-primary);
  font-weight: 700;
  background: transparent;
}

.gwac-landing-nav__enter {
  align-self: center;
  white-space: nowrap;
  padding: 0.55rem 1.25rem !important;
  font-size: var(--gwac-text-small) !important;
  box-shadow: 0 8px 20px rgba(178, 36, 114, 0.28) !important;
}

.gwac-landing-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.gwac-landing-nav__menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid rgba(32, 43, 93, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--gwac-secondary);
  cursor: pointer;
  flex: 0 0 auto;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.gwac-landing-nav__menu:hover,
.gwac-landing-nav__menu:focus-visible {
  border-color: rgba(178, 36, 114, 0.35);
  background: rgba(178, 36, 114, 0.06);
  outline: none;
}

.gwac-landing-nav__menu-bars {
  display: grid;
  gap: 0.28rem;
  width: 1.05rem;
}

.gwac-landing-nav__menu-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gwac-landing-nav.is-menu-open .gwac-landing-nav__menu-bars span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.gwac-landing-nav.is-menu-open .gwac-landing-nav__menu-bars span:nth-child(2) {
  opacity: 0;
}

.gwac-landing-nav.is-menu-open .gwac-landing-nav__menu-bars span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.gwac-landing-nav__panel {
  display: none;
}

.gwac-landing-nav__panel-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.gwac-landing-nav__panel-list a {
  display: block;
  padding: 0.72rem 1rem;
  color: var(--gwac-secondary);
  text-decoration: none;
  font-size: var(--gwac-text-body);
  font-weight: 600;
  border-left: 3px solid transparent;
}

.gwac-landing-nav__panel-list a:hover {
  background: rgba(32, 43, 93, 0.04);
}

.gwac-landing-nav__panel-list a.is-active {
  color: var(--gwac-primary);
  border-left-color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.06);
  font-weight: 700;
}

/* —— Hero —— */
.gwac-landing-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: min(70vh, 680px);
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 7vh, 5.25rem);
}

.gwac-landing-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5rem;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 1440px) {
  .gwac-landing-hero {
    min-height: min(72vh, 860px);
    padding-block: clamp(3.75rem, 8vh, 6.5rem);
  }
}

.gwac-landing-hero--compact {
  min-height: 0;
  padding-block: clamp(2.5rem, 5.5vw, 3.75rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(178, 36, 114, 0.28), transparent 40%),
    linear-gradient(125deg, var(--gwac-secondary) 0%, #2a3768 55%, #3a4578 100%);
}

.gwac-landing-hero--compact::after {
  display: none;
}

.gwac-landing-hero__media {
  position: absolute;
  inset: -2%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: gwacLandingMedia 18s var(--landing-ease) infinite alternate;
}

.gwac-landing-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 26, 58, 0.92) 0%, rgba(32, 43, 93, 0.72) 42%, rgba(32, 43, 93, 0.38) 72%, rgba(32, 43, 93, 0.22) 100%),
    linear-gradient(to top, rgba(18, 26, 58, 0.35), transparent 40%);
}

.gwac-landing-hero--onehealth .gwac-landing-hero__shade {
  background:
    linear-gradient(115deg, rgba(18, 26, 58, 0.94) 0%, rgba(32, 43, 93, 0.7) 48%, rgba(178, 36, 114, 0.32) 100%),
    linear-gradient(to top, rgba(18, 26, 58, 0.3), transparent 42%);
}

.gwac-landing-hero__inner {
  position: relative;
  z-index: 3;
  animation: gwacLandingRise 0.85s var(--landing-ease) both;
}

.gwac-landing-hero__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.gwac-landing-pill {
  display: inline-block;
  padding: 0.42rem 0.8rem;
  background: var(--gwac-primary);
  color: #fff;
  font-size: clamp(0.65rem, 0.72vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(178, 36, 114, 0.28);
}

.gwac-landing-meta {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.8rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: var(--gwac-text-small);
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.gwac-landing-hero__title {
  color: #fff !important;
  font-family: "Inter", "Public Sans", "Segoe UI", sans-serif !important;
  font-size: var(--gwac-text-hero) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.035em;
  margin: 0 0 1.1rem;
  max-width: min(48rem, 58vw);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

@media (min-width: 1440px) {
  .gwac-landing-hero__title {
    max-width: min(58rem, 50vw);
  }
}

.gwac-landing-hero--compact .gwac-landing-hero__title {
  max-width: none;
}

.gwac-landing-hero__title span {
  color: rgba(255, 255, 255, 0.8);
}

.gwac-landing-hero__lead {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: var(--gwac-text-lead) !important;
  line-height: 1.55 !important;
  font-weight: 400;
  margin: 0 0 2rem;
  max-width: min(42rem, 100%);
}

.gwac-landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.gwac-landing-hero__actions .gwac-btn {
  font-size: var(--gwac-text-body);
  padding: 0.95rem 1.7rem;
}

.gwac-landing-hero__actions .gwac-btn--outline {
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.06);
}

/* —— Stats strip —— */
.gwac-landing-stats {
  position: relative;
  z-index: 4;
  background: #fff;
  border-bottom: 1px solid rgba(32, 43, 93, 0.08);
  box-shadow: 0 12px 28px rgba(32, 43, 93, 0.04);
}

.gwac-landing-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gwac-primary), rgba(178, 36, 114, 0.15) 45%, transparent);
}

.gwac-landing-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.gwac-landing-stats__item {
  padding: clamp(1.25rem, 2.2vw, 1.85rem) clamp(0.85rem, 1.5vw, 1.35rem);
  text-align: left;
  border-right: 1px solid rgba(32, 43, 93, 0.08);
}

.gwac-landing-stats__item:last-child {
  border-right: 0;
}

.gwac-landing-stats__item strong {
  display: block;
  font-size: var(--gwac-text-title);
  font-weight: 800;
  color: var(--gwac-secondary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.gwac-landing-stats__copy > span {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--gwac-text-small);
  color: var(--gwac-accent);
  font-weight: 600;
}

@media (max-width: 720px) {
  .gwac-landing-stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gwac-landing-stats__item:nth-child(2n) {
    border-right: 0;
  }

  .gwac-landing-stats__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(32, 43, 93, 0.08);
  }
}

@media (max-width: 480px) {
  .gwac-landing-stats__inner {
    grid-template-columns: 1fr;
  }

  .gwac-landing-stats__item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(32, 43, 93, 0.08);
  }

  .gwac-landing-stats__item:last-child {
    border-bottom: 0;
  }
}

/* —— Sections —— */
.gwac-landing-section {
  padding-block: clamp(2.5rem, 4.5vw, 4.25rem);
}

@media (min-width: 1440px) {
  .gwac-landing-section {
    padding-block: clamp(3rem, 4vw, 5rem);
  }
}

.gwac-landing-section--band {
  background:
    radial-gradient(circle at 8% 0%, rgba(178, 36, 114, 0.05), transparent 34%),
    #fff;
  padding-inline: 0;
}

.gwac-landing-section--band .gwac-landing-section__frame {
  padding-block: 0;
}

.gwac-landing-section__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.gwac-landing-section__head--left {
  text-align: left;
}

.gwac-landing-section__head--left p {
  margin-left: 0;
  max-width: 46rem;
}

.gwac-landing-section__head--left .gwac-landing-rule {
  margin-left: 0;
}

.gwac-landing-section__head h2 {
  font-size: var(--gwac-text-display);
  font-weight: 800;
  margin: 0 0 0.7rem;
  color: var(--gwac-secondary);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.gwac-landing-section__head p {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
  line-height: 1.55;
}

.gwac-landing-rule {
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 1.2rem auto 0;
  background: linear-gradient(90deg, var(--gwac-primary), rgba(178, 36, 114, 0.2));
  border-radius: 999px;
}

.gwac-landing-eyebrow {
  color: var(--gwac-primary);
  font-size: clamp(0.68rem, 0.75vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}

.gwac-landing-eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.gwac-landing-grid {
  display: grid;
  gap: clamp(1rem, 1.6vw, 1.5rem);
}

.gwac-landing-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.gwac-landing-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

/* Soft content panels */
.gwac-landing-panel {
  position: relative;
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: var(--gwac-radius-lg);
  padding: clamp(1.4rem, 2vw, 1.95rem);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s var(--landing-ease), transform 0.2s var(--landing-ease);
}

.gwac-landing-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gwac-primary), rgba(178, 36, 114, 0.15));
  opacity: 0.85;
}

.gwac-landing-panel:hover {
  border-color: rgba(178, 36, 114, 0.2);
  box-shadow: 0 18px 36px rgba(32, 43, 93, 0.08);
  transform: translateY(-3px);
}

.gwac-landing-panel__label {
  margin: 0 0 0.55rem;
  color: var(--gwac-primary);
  font-size: clamp(0.68rem, 0.75vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gwac-landing-panel h3 {
  font-size: var(--gwac-text-title);
  font-weight: 800;
  margin: 0 0 0.7rem;
  color: var(--gwac-secondary);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.gwac-landing-panel p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.6;
}

/* Programme timeline — horizontal roadmap */
.gwac-timeline-roadmap {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  min-width: 0;
}

#timeline .gwac-landing-section__frame {
  min-width: 0;
  overflow: visible;
}

.gwac-timeline-status {
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--gwac-radius-lg);
  background:
    linear-gradient(135deg, rgba(32, 43, 93, 0.04), rgba(178, 36, 114, 0.06)),
    #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
}

.gwac-timeline-status__copy {
  display: grid;
  gap: 0.2rem;
}

.gwac-timeline-status__label {
  color: var(--gwac-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gwac-timeline-status__title {
  color: var(--gwac-secondary);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gwac-timeline-status__meter {
  position: relative;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(32, 43, 93, 0.08);
  overflow: hidden;
}

.gwac-timeline-status__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gwac-primary), #8f1d5c 55%, var(--gwac-secondary));
  box-shadow: 0 0 18px rgba(178, 36, 114, 0.35);
  transition: width 0.6s var(--landing-ease);
}

.gwac-timeline-status__meta {
  margin: 0;
  color: var(--gwac-accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.gwac-timeline-track-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-block: 0.25rem 0.5rem;
}

.gwac-timeline-track-wrap::before,
.gwac-timeline-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(1.25rem, 3vw, 2.5rem);
  z-index: 2;
  pointer-events: none;
}

.gwac-timeline-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff 20%, transparent);
}

.gwac-timeline-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #fff 20%, transparent);
}

.gwac-timeline-track {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: clamp(1rem, 3vw, 2rem);
  padding: 0.35rem clamp(1rem, 3vw, 2rem) 0.85rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(32, 43, 93, 0.28) rgba(32, 43, 93, 0.06);
}

.gwac-timeline-track::-webkit-scrollbar {
  height: 8px;
}

.gwac-timeline-track::-webkit-scrollbar-track {
  margin-inline: clamp(1rem, 3vw, 2rem);
  background: rgba(32, 43, 93, 0.06);
  border-radius: 999px;
}

.gwac-timeline-track::-webkit-scrollbar-thumb {
  background: rgba(32, 43, 93, 0.22);
  border-radius: 999px;
}

.gwac-timeline-node {
  flex: 0 0 auto;
  width: clamp(7.5rem, 16vw, 9.5rem);
  scroll-snap-align: start;
  display: grid;
  gap: 0.55rem;
  transition: opacity 0.25s ease, transform 0.25s var(--landing-ease), filter 0.25s ease;
}

.gwac-timeline-node.is-past {
  opacity: 0.42;
  filter: grayscale(0.35);
}

.gwac-timeline-node.is-past .gwac-timeline-node__label {
  opacity: 0.85;
}

.gwac-timeline-node.is-upcoming:not(.is-next) {
  opacity: 0.62;
}

.gwac-timeline-node.is-next {
  opacity: 0.92;
}

.gwac-timeline-node.is-current {
  opacity: 1;
  transform: translateY(-2px);
  z-index: 1;
}

.gwac-timeline-node__stem {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}

.gwac-timeline-node__marker {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gwac-accent);
  background: #fff;
  border: 2px solid rgba(32, 43, 93, 0.14);
  box-shadow: 0 6px 14px rgba(32, 43, 93, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gwac-timeline-node__num {
  line-height: 1;
}

.gwac-timeline-node__line {
  flex: 1 1 auto;
  height: 2px;
  margin-inline: -1px;
  background: linear-gradient(90deg, rgba(32, 43, 93, 0.16), rgba(178, 36, 114, 0.22));
}

.gwac-timeline-node.is-past .gwac-timeline-node__marker {
  color: #fff;
  background: linear-gradient(145deg, rgba(178, 36, 114, 0.75), rgba(143, 29, 92, 0.85));
  border-color: transparent;
}

.gwac-timeline-node.is-past .gwac-timeline-node__line {
  background: rgba(178, 36, 114, 0.28);
}

.gwac-timeline-node.is-current .gwac-timeline-node__marker {
  width: 2.55rem;
  height: 2.55rem;
  color: #fff;
  background: var(--gwac-secondary);
  border-color: transparent;
  box-shadow:
    0 0 0 4px rgba(32, 43, 93, 0.1),
    0 12px 24px rgba(32, 43, 93, 0.18);
  animation: gwac-timeline-pulse 2.4s ease-in-out infinite;
}

.gwac-timeline-node.is-next .gwac-timeline-node__marker {
  color: var(--gwac-primary);
  border-color: rgba(178, 36, 114, 0.45);
  background: rgba(178, 36, 114, 0.08);
}

@keyframes gwac-timeline-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(32, 43, 93, 0.1),
      0 12px 24px rgba(32, 43, 93, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(178, 36, 114, 0.14),
      0 14px 28px rgba(32, 43, 93, 0.2);
  }
}

.gwac-timeline-node__label {
  display: grid;
  gap: 0.2rem;
  padding-right: 0.35rem;
}

.gwac-timeline-node__date {
  color: var(--gwac-primary);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gwac-timeline-node__title {
  color: var(--gwac-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gwac-timeline-node__state {
  display: inline-flex;
  align-self: start;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gwac-accent);
  background: rgba(32, 43, 93, 0.06);
}

.gwac-timeline-node.is-current .gwac-timeline-node__state {
  color: #fff;
  background: var(--gwac-secondary);
}

.gwac-timeline-node.is-next .gwac-timeline-node__state {
  color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.12);
}

.gwac-timeline-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
  min-width: 0;
}

.gwac-timeline-spotlight__card {
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: var(--gwac-radius-lg);
  padding: 1.1rem 1.2rem 1.25rem;
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s var(--landing-ease), transform 0.2s var(--landing-ease);
}

.gwac-timeline-spotlight__card.is-current {
  border-color: rgba(32, 43, 93, 0.16);
  box-shadow: 0 18px 36px rgba(32, 43, 93, 0.1);
  background:
    linear-gradient(160deg, rgba(32, 43, 93, 0.03), transparent 55%),
    #fff;
}

.gwac-timeline-spotlight__card.is-next {
  border-style: dashed;
  border-color: rgba(178, 36, 114, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.gwac-timeline-spotlight__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.55rem;
}

.gwac-timeline-spotlight__meta time {
  color: var(--gwac-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gwac-timeline-spotlight__state {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gwac-accent);
  background: rgba(32, 43, 93, 0.06);
}

.gwac-timeline-spotlight__card.is-current .gwac-timeline-spotlight__state {
  color: #fff;
  background: var(--gwac-secondary);
}

.gwac-timeline-spotlight__card.is-next .gwac-timeline-spotlight__state {
  color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.12);
}

.gwac-timeline-spotlight__card h3 {
  margin: 0 0 0.45rem;
  font-size: var(--gwac-text-title);
  font-weight: 800;
  color: var(--gwac-secondary);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gwac-timeline-spotlight__card p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-timeline-history {
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: var(--gwac-radius-lg);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.gwac-timeline-history > summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  list-style: none;
  color: var(--gwac-secondary);
  font-size: 0.88rem;
  font-weight: 700;
}

.gwac-timeline-history > summary::-webkit-details-marker {
  display: none;
}

.gwac-timeline-history > summary::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--gwac-primary);
  border-bottom: 2px solid var(--gwac-primary);
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  margin-right: 0.15rem;
}

.gwac-timeline-history[open] > summary::before {
  transform: rotate(45deg);
}

.gwac-timeline-history__count {
  display: inline-grid;
  place-items: center;
  min-width: 1.55rem;
  height: 1.55rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, var(--gwac-primary), #8f1d5c);
  font-size: 0.72rem;
  font-weight: 800;
}

.gwac-timeline-history__hint {
  margin-left: auto;
  color: var(--gwac-accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.gwac-timeline-history__list {
  list-style: none;
  margin: 0;
  padding: 0 1.1rem 1rem;
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid rgba(32, 43, 93, 0.06);
}

.gwac-timeline-history__item {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.75rem;
  padding-top: 0.85rem;
  opacity: 0.72;
}

.gwac-timeline-history__dot {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.1);
  font-size: 0.68rem;
  font-weight: 800;
}

.gwac-timeline-history__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin-bottom: 0.2rem;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gwac-timeline-history__meta time {
  color: var(--gwac-primary);
}

.gwac-timeline-history__body strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gwac-secondary);
  font-size: 0.92rem;
  font-weight: 800;
}

.gwac-timeline-history__body p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (min-width: 960px) {
  .gwac-timeline-spotlight {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .gwac-timeline-history__hint {
    margin-left: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gwac-timeline-node.is-current .gwac-timeline-node__marker {
    animation: none;
  }

  .gwac-timeline-status__fill,
  .gwac-timeline-node,
  .gwac-timeline-spotlight__card {
    transition: none;
  }
}

/* Programme parts */
.gwac-landing-parts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.gwac-landing-part {
  background: linear-gradient(180deg, #fff, #fbfafb);
  border-radius: var(--gwac-radius-lg);
  padding: clamp(1.4rem, 2vw, 2rem);
  border: 1px solid rgba(32, 43, 93, 0.08);
  box-shadow: 0 10px 28px rgba(32, 43, 93, 0.04);
}

.gwac-landing-part__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.gwac-landing-part__num {
  flex: 0 0 auto;
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(178, 36, 114, 0.14), rgba(32, 43, 93, 0.06));
  color: var(--gwac-primary);
  font-weight: 800;
  font-size: var(--gwac-text-small);
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(178, 36, 114, 0.12);
}

.gwac-landing-part h3 {
  margin: 0;
  font-size: var(--gwac-text-title);
  font-weight: 800;
  color: var(--gwac-secondary);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.gwac-landing-part__summary {
  margin: 0 0 1.2rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.6;
}

.gwac-landing-part__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.gwac-landing-part__list::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(178, 36, 114, 0.35), rgba(32, 43, 93, 0.08));
}

.gwac-landing-part__list li {
  display: grid;
  grid-template-columns: 5.75rem 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 0.85rem 0 0.85rem 1.35rem;
  border-top: 1px solid rgba(32, 43, 93, 0.06);
  position: relative;
}

.gwac-landing-part__list li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 1.15rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gwac-primary);
  box-shadow: 0 0 0 4px rgba(178, 36, 114, 0.12);
}

.gwac-landing-part__list li:first-child {
  border-top: 0;
}

.gwac-landing-part__list span {
  font-size: var(--gwac-text-small);
  font-weight: 800;
  color: var(--gwac-primary);
  line-height: 1.4;
}

.gwac-landing-part__list p {
  margin: 0;
  color: var(--gwac-secondary);
  font-size: var(--gwac-text-small);
  line-height: 1.5;
}

/* Feature / capstone band */
.gwac-landing-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.9fr);
  gap: clamp(1.15rem, 2vw, 1.65rem);
  align-items: stretch;
}

.gwac-landing-feature__copy {
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: var(--gwac-radius-lg);
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  box-shadow: 0 12px 30px rgba(32, 43, 93, 0.04);
}

.gwac-landing-feature__copy h2 {
  font-size: var(--gwac-text-display);
  font-weight: 800;
  margin: 0 0 0.8rem;
  color: var(--gwac-secondary);
  letter-spacing: -0.03em;
}

.gwac-landing-feature__copy > p {
  margin: 0 0 1.2rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
  max-width: 40rem;
  line-height: 1.55;
}

.gwac-landing-feature__aside {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(178, 36, 114, 0.35), transparent 42%),
    linear-gradient(160deg, #1a2550 0%, var(--gwac-secondary) 55%, #161f42 100%);
  color: #fff;
  border-radius: var(--gwac-radius-lg);
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 18px 40px rgba(32, 43, 93, 0.22);
}

.gwac-landing-feature__aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
}

.gwac-landing-feature__aside > * {
  position: relative;
  z-index: 1;
}

.gwac-landing-feature__aside h3 {
  margin: 0;
  font-size: var(--gwac-text-title);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.gwac-landing-feature__aside > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-landing-feature__aside ul {
  margin: 0.35rem 0 0.9rem;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--gwac-text-small);
}

.gwac-landing-feature__aside li + li {
  margin-top: 0.4rem;
}

.gwac-landing-feature__aside .gwac-btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .gwac-landing-feature {
    grid-template-columns: 1fr;
  }
}

.gwac-landing-card {
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: var(--gwac-radius-lg);
  padding: clamp(1.25rem, 2vw, 2rem);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.gwac-landing-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--gwac-radius-md);
  margin-bottom: 1.15rem;
  background: rgba(178, 36, 114, 0.1);
  position: relative;
}

.gwac-landing-card__icon::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 4px;
  background: var(--gwac-primary);
  opacity: 0.85;
}

.gwac-landing-card__icon--book::after {
  inset: 22% 28%;
  border-radius: 2px 6px 6px 2px;
}

.gwac-landing-card__icon--travel {
  background: rgba(255, 255, 255, 0.12);
}

.gwac-landing-card__icon--travel::after {
  background: #fff;
  opacity: 0.9;
  clip-path: polygon(15% 55%, 55% 15%, 85% 45%, 45% 85%);
}

.gwac-landing-card h3 {
  font-size: var(--gwac-text-title);
  font-weight: 800;
  margin: 0 0 0.65rem;
  color: var(--gwac-secondary);
  line-height: 1.25;
}

.gwac-landing-card p,
.gwac-landing-card li {
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-landing-card__muted {
  margin-top: 0.75rem;
}

.gwac-landing-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.gwac-landing-card li + li {
  margin-top: 0.4rem;
}

.gwac-landing-card strong {
  color: var(--gwac-secondary);
  font-weight: 700;
}

.gwac-landing-link {
  color: var(--gwac-primary) !important;
  font-weight: 700;
  font-size: var(--gwac-text-body);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  transition: gap 0.15s ease, color 0.15s ease;
}

.gwac-landing-link:hover {
  gap: 0.55rem;
  color: #9a1d62 !important;
}

.gwac-landing-link--light {
  color: #fff !important;
}

.gwac-landing-link--light:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.gwac-landing-card--navy {
  background: var(--gwac-secondary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 16px 32px rgba(32, 43, 93, 0.22);
}

.gwac-landing-card--navy h3,
.gwac-landing-card--navy p,
.gwac-landing-card--navy strong {
  color: #fff;
}

.gwac-landing-card--navy p {
  color: rgba(255, 255, 255, 0.88);
}

.gwac-landing-card--navy .gwac-btn {
  width: 100%;
  margin-top: 0.35rem;
}

.gwac-landing-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

.gwac-landing-mini > div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
}

.gwac-landing-mini span {
  display: block;
  font-size: clamp(0.62rem, 0.7vw, 0.72rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.gwac-landing-mini strong {
  font-size: var(--gwac-text-small);
}

.gwac-landing-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gwac-landing-checklist--wide {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.gwac-landing-checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
  font-weight: 600;
  color: var(--gwac-secondary) !important;
  font-size: var(--gwac-text-small);
  line-height: 1.45;
}

.gwac-landing-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(178, 36, 114, 0.12);
  box-shadow: inset 0 0 0 3px var(--gwac-primary);
}

.gwac-landing-block {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.gwac-landing-block h2 {
  font-size: var(--gwac-text-title);
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: var(--gwac-secondary);
}

.gwac-landing-prose {
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
  line-height: 1.55;
}

.gwac-landing-prose .gwac-landing-cards,
.gwac-landing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}

.gwac-landing-prose .gwac-landing-card h3 {
  font-size: var(--gwac-text-body);
}

/* —— Schedule —— */
.gwac-landing-schedule {
  padding-block: clamp(2.5rem, 4.5vw, 4.25rem) var(--gwac-inner-pad-bottom);
  background:
    linear-gradient(180deg, rgba(248, 246, 247, 0), var(--gwac-bg) 12%);
}

.gwac-landing-schedule__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.65rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(32, 43, 93, 0.08);
}

.gwac-landing-schedule__head h2 {
  font-size: var(--gwac-text-display);
  font-weight: 800;
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
  color: var(--gwac-secondary);
}

.gwac-landing-schedule__head p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
}

.mppr-sched {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mppr-sched__part {
  margin: 1.85rem 0 0.55rem;
  font-size: var(--gwac-text-small);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gwac-primary);
}

.mppr-sched__day {
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: var(--gwac-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.mppr-sched__day:hover {
  border-color: rgba(178, 36, 114, 0.18);
}

.mppr-sched__day[open] {
  border-color: rgba(178, 36, 114, 0.22);
  box-shadow: 0 14px 32px rgba(32, 43, 93, 0.07);
}

.mppr-sched__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: #fff;
  transition: background 0.15s ease;
}

.mppr-sched__summary:hover {
  background: rgba(248, 246, 247, 0.85);
}

.mppr-sched__summary::-webkit-details-marker {
  display: none;
}

.mppr-sched__daynum {
  flex: 0 0 auto;
  min-width: 3.35rem;
  height: 3.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(178, 36, 114, 0.12), rgba(32, 43, 93, 0.05));
  color: var(--gwac-primary);
  font-weight: 800;
  line-height: 1.1;
  font-size: var(--gwac-text-body);
}

.mppr-sched__daynum span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gwac-accent);
  font-weight: 700;
}

.mppr-sched__meta {
  flex: 1;
  min-width: 0;
}

.mppr-sched__date {
  font-weight: 800;
  color: var(--gwac-secondary);
  font-size: var(--gwac-text-body);
  letter-spacing: -0.01em;
}

.mppr-sched__theme {
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  margin-top: 0.2rem;
}

.mppr-sched__chevron {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--gwac-accent);
  transition: transform 0.2s var(--landing-ease);
  font-size: 1.1rem;
}

.mppr-sched__day[open] .mppr-sched__chevron {
  transform: rotate(180deg);
  color: var(--gwac-primary);
}

.mppr-sched__body {
  border-top: 1px solid rgba(32, 43, 93, 0.08);
  overflow-x: visible;
}

.mppr-sched__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 0;
}

.mppr-sched__col-time {
  width: 8.25rem;
}

.mppr-sched__col-who {
  width: 24%;
}

.mppr-sched__col-topics {
  width: auto;
}

.mppr-sched__table th {
  text-align: left;
  font-size: clamp(0.68rem, 0.75vw, 0.78rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #1a2550, var(--gwac-secondary));
  padding: 0.8rem 1rem;
  font-weight: 700;
}

.mppr-sched__table td {
  vertical-align: top;
  padding: 1rem;
  border-bottom: 1px solid rgba(32, 43, 93, 0.08);
  font-size: var(--gwac-text-small);
  color: var(--gwac-secondary);
}

.mppr-sched__table tr:last-child td {
  border-bottom: 0;
}

.mppr-sched__table .time {
  width: 8.25rem;
  max-width: 8.25rem;
  white-space: nowrap;
  font-weight: 700;
  color: var(--gwac-primary);
  font-size: 0.82rem;
  line-height: 1.35;
}

.mppr-sched__table .topics strong {
  display: block;
  font-size: var(--gwac-text-body);
  color: var(--gwac-secondary);
  margin-bottom: 0.35rem;
}

.mppr-sched__table .topics ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.mppr-sched__table .topics li {
  margin: 0.15rem 0;
  color: var(--gwac-accent);
}

.mppr-sched__topics-plain {
  margin: 0.35rem 0 0;
  color: var(--gwac-accent);
}

.mppr-sched__table .who {
  width: 24%;
  color: #475569;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  line-height: 1.45;
}

.mppr-sched__table .topics {
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.mppr-sched__table tr.is-break td {
  background: rgba(248, 246, 247, 0.9);
  color: var(--gwac-accent);
  font-weight: 600;
}

.mppr-sched__table tr.is-social td {
  background: rgba(178, 36, 114, 0.045);
}

@media (max-width: 991.98px) {
  .mppr-sched__body {
    padding: 0;
  }

  .mppr-sched__table,
  .mppr-sched__table tbody {
    display: block;
    width: 100%;
  }

  .mppr-sched__table thead {
    display: none;
  }

  .mppr-sched__table tbody tr {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(32, 43, 93, 0.1);
    border-radius: 0;
    background: #fff;
  }

  .mppr-sched__table tbody tr:last-child {
    border-bottom: 0;
  }

  .mppr-sched__table td {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    border: 0;
  }

  .mppr-sched__table td.time,
  .mppr-sched__table td.topics,
  .mppr-sched__table td.who {
    width: 100%;
    max-width: 100%;
  }

  .mppr-sched__table td::before {
    display: none;
  }

  .mppr-sched__table td.time {
    padding: 0.5rem 1rem;
    background: rgba(178, 36, 114, 0.08);
    border-bottom: 1px solid rgba(178, 36, 114, 0.1);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: var(--gwac-primary);
  }

  .mppr-sched__table td.topics {
    padding: 0.75rem 1rem;
  }

  .mppr-sched__table td.topics strong {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .mppr-sched__table td.who:not(:empty) {
    margin: 0;
    padding: 0.6rem 1rem 0.85rem;
    background: rgba(248, 246, 247, 0.92);
    border-top: 1px solid rgba(32, 43, 93, 0.08);
    font-size: 0.82rem;
    line-height: 1.45;
    color: #64748b;
  }

  .mppr-sched__table td.who:not(:empty)::before {
    display: block;
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gwac-accent);
    margin-bottom: 0.2rem;
  }

  .mppr-sched__table td.who:empty {
    display: none;
  }

  .mppr-sched__table tr:not(:has(.who:not(:empty))) td.topics {
    padding-bottom: 0.85rem;
  }

  .mppr-sched__table tr.is-break {
    background: rgba(248, 246, 247, 0.9);
  }

  .mppr-sched__table tr.is-break td.time:empty,
  .mppr-sched__table tr.is-break td.who:empty {
    display: none;
  }

  .mppr-sched__table tr.is-break td.topics {
    padding: 0.8rem 1rem;
    text-align: center;
    font-weight: 600;
  }

  .mppr-sched__table tr.is-social td.time {
    background: rgba(178, 36, 114, 0.12);
  }

  .mppr-sched__table tr.is-social td.who:not(:empty) {
    background: rgba(178, 36, 114, 0.04);
  }
}

@keyframes gwacLandingRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gwacLandingMedia {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.2%, -0.6%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gwac-landing-hero__media,
  .gwac-landing-hero__inner {
    animation: none !important;
  }

  .gwac-landing-panel:hover,
  .gwac-landing-link:hover {
    transform: none;
  }
}

@media (max-width: 720px) {
  .gwac-landing-nav__inner {
    padding-bottom: 0;
  }

  .gwac-landing-hero {
    min-height: 0;
    padding-block: clamp(1.75rem, 5vw, 2.5rem);
  }

  .gwac-landing-hero__title {
    max-width: none;
  }

  .gwac-landing-hero__kicker {
    margin-bottom: 1rem;
  }

  .gwac-landing-hero__lead {
    margin-bottom: 1.25rem;
  }

  .gwac-landing-hero__shade {
    background: linear-gradient(180deg, rgba(18, 26, 58, 0.92) 12%, rgba(32, 43, 93, 0.82) 100%);
  }

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

  .gwac-landing-hero__actions .gwac-btn {
    width: 100%;
    justify-content: center;
  }

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

  .gwac-landing-part__list::before,
  .gwac-landing-part__list li::before {
    display: none;
  }

  .gwac-landing-part__list li {
    padding-left: 0;
    grid-template-columns: 4.75rem 1fr;
  }

  .mppr-sched__summary {
    flex-wrap: wrap;
    padding: 0.9rem 1rem;
    gap: 0.65rem;
  }

  .mppr-sched__daynum {
    min-width: 2.85rem;
    height: 2.85rem;
  }

  .gwac-logistics-shuttle li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
}

/* Tablet: keep landing content wider than desktop shell inset */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .gwac-landing-nav__inner,
  .gwac-landing-hero__inner,
  .gwac-landing-section,
  .gwac-landing-section__frame,
  .gwac-landing-schedule,
  .gwac-landing-stats__inner {
    padding-inline: max(1rem, var(--gwac-gutter-x));
  }
}

@media (max-width: 991.98px) {
  .gwac-landing-nav__inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding-block: 0.55rem;
  }

  .gwac-landing-nav__tabs {
    display: none;
  }

  .gwac-landing-nav__actions {
    width: 100%;
    margin-left: 0;
    order: 1;
  }

  .gwac-landing-nav__enter {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }

  .gwac-landing-nav__menu {
    display: inline-flex;
  }

  .gwac-landing-nav__panel {
    order: 2;
    width: 100%;
    border-top: 1px solid rgba(32, 43, 93, 0.08);
    background: #fff;
  }

  .gwac-landing-nav.is-menu-open .gwac-landing-nav__panel {
    display: block;
  }

  /* Enter course already sits in sticky hub nav — drop duplicate hero/schedule CTAs. */
  .gwac-landing-hero__actions .gwac-btn--primary,
  .gwac-landing-schedule__head .gwac-btn {
    display: none;
  }

  .gwac-landing-schedule__head {
    margin-bottom: 1.15rem;
  }
}

@media (min-width: 992px) {
  .gwac-landing-nav__menu,
  .gwac-landing-nav__panel {
    display: none !important;
  }
}

/* —— Logistics layout (MPPR) —— */
.gwac-logistics {
  padding-block: clamp(1.75rem, 3vw, 2.75rem) var(--gwac-inner-pad-bottom, 3.5rem);
}

.gwac-logistics__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 0.9fr);
  gap: clamp(1.15rem, 2vw, 1.75rem);
  align-items: start;
}

.gwac-logistics__main,
.gwac-logistics__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 2vw, 1.75rem);
  min-width: 0;
}

.gwac-logistics-panel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: var(--gwac-radius-lg, 14px);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.gwac-logistics-panel--accent::before,
.gwac-logistics-panel--aside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gwac-primary);
}

.gwac-logistics-panel--aside::before {
  background: #515b90;
}

.gwac-logistics-panel--support {
  background: linear-gradient(165deg, #fff0f3 0%, #fff 70%);
}

.gwac-logistics-panel__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.gwac-logistics-panel__head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gwac-secondary);
}

.gwac-logistics-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.1);
  flex: 0 0 auto;
}

.gwac-logistics-panel__icon--secondary {
  color: #515b90;
  background: rgba(81, 91, 144, 0.12);
}

.gwac-logistics-panel__lead {
  margin: 0 0 1.1rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
  line-height: 1.6;
}

.gwac-logistics-media {
  margin: 0 0 1.15rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(32, 43, 93, 0.1);
  background: #f3e8ec;
}

.gwac-logistics-media img {
  display: block;
  width: 100%;
  height: clamp(11rem, 28vw, 16rem);
  object-fit: cover;
}

.gwac-logistics-media--aside img {
  height: 8.5rem;
}

.gwac-logistics-media figcaption {
  margin: 0;
  padding: 0.55rem 0.85rem;
  font-size: var(--gwac-text-small);
  color: var(--gwac-accent);
  background: rgba(255, 240, 243, 0.85);
  border-top: 1px solid rgba(32, 43, 93, 0.06);
}

.gwac-logistics-address {
  margin: 0 0 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 10px;
  background: rgba(255, 232, 239, 0.65);
  border: 1px solid rgba(178, 36, 114, 0.12);
}

.gwac-logistics-address h3 {
  margin: 0 0 0.35rem;
  font-size: var(--gwac-text-body);
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-logistics-address p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-logistics-facts {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.gwac-logistics-facts li {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(32, 43, 93, 0.08);
  background: #fff;
}

.gwac-logistics-facts strong {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gwac-primary);
  font-weight: 800;
  align-self: start;
  padding-top: 0.1rem;
}

.gwac-logistics-facts span {
  color: var(--gwac-secondary);
  font-size: var(--gwac-text-small);
  line-height: 1.5;
}

.gwac-logistics-map {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gwac-logistics-map iframe {
  width: 100%;
  height: 14rem;
  border: 1px solid rgba(32, 43, 93, 0.12);
  border-radius: 12px;
  background: #f8f6f7;
}

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

.gwac-logistics-shuttle {
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
}

.gwac-logistics-shuttle__label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #515b90;
}

.gwac-logistics-shuttle ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gwac-logistics-shuttle li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  border-bottom: 1px solid rgba(32, 43, 93, 0.06);
}

.gwac-logistics-shuttle li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gwac-logistics-shuttle strong {
  color: var(--gwac-secondary);
  font-weight: 800;
}

.gwac-logistics-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.gwac-logistics-checks li {
  display: grid;
  gap: 0.15rem;
  padding-left: 1.35rem;
  position: relative;
}

.gwac-logistics-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(178, 36, 114, 0.14);
  box-shadow: inset 0 0 0 2.5px var(--gwac-primary);
}

.gwac-logistics-checks strong {
  color: var(--gwac-secondary);
  font-size: var(--gwac-text-small);
  font-weight: 800;
}

.gwac-logistics-checks span {
  color: var(--gwac-accent);
  font-size: 0.8rem;
}

.gwac-logistics-panel--support p {
  margin: 0 0 1rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-logistics-support-btn {
  width: 100%;
  justify-content: center;
  color: #fff !important;
  background: var(--gwac-primary) !important;
  border: 1px solid transparent !important;
  box-shadow: 0 10px 24px rgba(178, 36, 114, 0.28);
}

@media (max-width: 960px) {
  .gwac-logistics__grid {
    grid-template-columns: 1fr;
  }

  .gwac-logistics-shuttles {
    grid-template-columns: 1fr;
  }

  .gwac-logistics-facts li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* —— Preparation layout (MPPR) —— */
.gwac-prep {
  padding-block: clamp(1.75rem, 3vw, 2.75rem) var(--gwac-inner-pad-bottom, 3.5rem);
}

.gwac-prep__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 0.9fr);
  gap: clamp(1.15rem, 2vw, 1.75rem);
  align-items: start;
}

.gwac-prep__main,
.gwac-prep__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 2vw, 1.75rem);
  min-width: 0;
}

.gwac-prep-panel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: var(--gwac-radius-lg, 14px);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.gwac-prep-panel--accent {
  border-top: 3px solid var(--gwac-primary);
}

.gwac-prep-panel--secondary {
  border-top: 3px solid #515b90;
}

.gwac-prep-panel--support {
  background: linear-gradient(165deg, rgba(178, 36, 114, 0.12) 0%, #fff 72%);
  border-color: rgba(178, 36, 114, 0.22);
}

.gwac-prep-panel__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.gwac-prep-panel__head h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gwac-secondary);
}

.gwac-prep-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.1);
  flex: 0 0 auto;
}

.gwac-prep-panel__icon--secondary {
  color: #515b90;
  background: rgba(81, 91, 144, 0.12);
}

.gwac-prep-panel__lead {
  margin: 0 0 1.1rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
  line-height: 1.6;
}

.gwac-prep-panel__lead code,
.gwac-prep-prose code,
.gwac-prep-callout code,
.gwac-prep-avoid code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: rgba(243, 221, 227, 0.7);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.gwac-prep-readings {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.gwac-prep-readings li {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 248, 248, 0.9);
  border-bottom: 1px solid rgba(32, 43, 93, 0.08);
}

.gwac-prep-readings li:last-child {
  border-bottom: 0;
}

.gwac-prep-readings__tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gwac-primary);
}

.gwac-prep-readings h3 {
  margin: 0;
  font-size: var(--gwac-text-body);
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-prep-readings p {
  margin: 0.25rem 0 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.5;
}

.gwac-prep-readings__note {
  color: #897079 !important;
  font-style: italic;
}

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

.gwac-prep-softcard {
  position: relative;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: 12px;
  padding: 1.1rem 1rem 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 8.5rem;
}

.gwac-prep-softcard:last-child {
  grid-column: 1 / -1;
}

.gwac-prep-softcard__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.35rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gwac-accent);
  background: rgba(243, 221, 227, 0.85);
  border-bottom-left-radius: 8px;
}

.gwac-prep-softcard h3 {
  margin: 0.35rem 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-prep-softcard p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.5;
  flex: 1;
}

.gwac-prep-softcard__ver {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  background: var(--gwac-primary);
}

.gwac-prep-callout {
  margin: 0 0 1.15rem;
  padding: 0.95rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(178, 36, 114, 0.18);
  background: rgba(255, 232, 239, 0.7);
}

.gwac-prep-callout strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gwac-primary);
  font-size: var(--gwac-text-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gwac-prep-callout p {
  margin: 0;
  color: var(--gwac-secondary);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-prep-steps {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  counter-reset: prepstep;
  display: grid;
  gap: 0.85rem;
}

.gwac-prep-steps > li {
  counter-increment: prepstep;
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: 12px;
  background: #fff;
}

.gwac-prep-steps > li::before {
  content: counter(prepstep);
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: var(--gwac-primary);
}

.gwac-prep-steps h3 {
  margin: 0 0 0.45rem;
  font-size: var(--gwac-text-body);
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-prep-prose {
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-prep-prose p,
.gwac-prep-prose ol,
.gwac-prep-prose ul {
  margin: 0 0 0.55rem;
}

.gwac-prep-prose ol,
.gwac-prep-prose ul {
  padding-left: 1.15rem;
}

.gwac-prep-prose li + li {
  margin-top: 0.25rem;
}

.gwac-prep-avoid {
  padding: 0.95rem 1.05rem;
  border-radius: 12px;
  background: rgba(248, 246, 247, 0.95);
  border: 1px dashed rgba(32, 43, 93, 0.18);
}

.gwac-prep-avoid h3 {
  margin: 0 0 0.5rem;
  font-size: var(--gwac-text-small);
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-prep-avoid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.5;
}

.gwac-prep-avoid li + li {
  margin-top: 0.35rem;
}

.gwac-prep-os {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.gwac-prep-os__card {
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
}

.gwac-prep-os__card h3 {
  margin: 0 0 0.4rem;
  font-size: var(--gwac-text-body);
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-prep-os__card p {
  margin: 0 0 0.65rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
}

.gwac-prep-code {
  margin: 0 0 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #24181d;
  color: #ffe8ef;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.55;
}

.gwac-prep-code code {
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
}

.gwac-prep-hint {
  margin: 0 0 1rem;
  color: #897079;
  font-size: 0.8rem;
}

.gwac-prep-download {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.gwac-prep-files {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.gwac-prep-files a {
  color: #515b90;
  font-size: var(--gwac-text-small);
  font-weight: 600;
  text-decoration: none;
}

.gwac-prep-files a:hover {
  color: var(--gwac-primary);
  text-decoration: underline;
}

.gwac-prep-panel--support p {
  margin: 0 0 1rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-prep-support-btn {
  width: 100%;
  justify-content: center;
  color: #fff !important;
  background: var(--gwac-primary) !important;
  border: 1px solid transparent !important;
  box-shadow: 0 10px 24px rgba(178, 36, 114, 0.28);
}

@media (max-width: 960px) {
  .gwac-prep__grid {
    grid-template-columns: 1fr;
  }

  .gwac-prep-software,
  .gwac-prep-os {
    grid-template-columns: 1fr;
  }

  .gwac-prep-softcard:last-child {
    grid-column: auto;
  }
}

/* —— Projects layout (MPPR) —— */
.gwac-projects {
  padding-block: clamp(1.75rem, 3vw, 2.75rem) var(--gwac-inner-pad-bottom, 3.5rem);
}

.gwac-projects-sectionhead {
  margin: 0 0 1.25rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--gwac-primary);
}

.gwac-projects-sectionhead--secondary {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-left-color: #515b90;
}

.gwac-projects-sectionhead h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gwac-secondary);
}

.gwac-projects-sectionhead p {
  margin: 0.4rem 0 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
  max-width: 46rem;
  line-height: 1.55;
}

.gwac-projects-flagship {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(15rem, 0.95fr);
  gap: clamp(1.1rem, 2vw, 1.6rem);
  align-items: start;
  margin-bottom: 0.5rem;
}

.gwac-projects-card {
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: var(--gwac-radius-lg, 14px);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.gwac-projects-card--main {
  border-top: 3px solid var(--gwac-primary);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gwac-projects-card--aside {
  border-top: 3px solid #515b90;
}

.gwac-projects-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.gwac-projects-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--gwac-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gwac-projects-meta {
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  font-weight: 600;
}

.gwac-projects-card h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gwac-secondary);
}

.gwac-projects-card__lead {
  margin: 0 0 1.15rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
  line-height: 1.6;
}

.gwac-projects-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.gwac-projects-box {
  background: rgba(255, 240, 243, 0.7);
  border: 1px solid rgba(178, 36, 114, 0.12);
  border-radius: 12px;
  padding: 0.95rem 1rem;
}

.gwac-projects-box h4 {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #515b90;
}

.gwac-projects-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--gwac-secondary);
  font-size: var(--gwac-text-small);
  line-height: 1.5;
}

.gwac-projects-box li + li {
  margin-top: 0.35rem;
}

.gwac-projects-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.gwac-projects-actions .gwac-btn--secondary {
  color: #fff !important;
}

.gwac-projects-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.gwac-projects-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(32, 43, 93, 0.1);
  background: #e8f0e6;
}

.gwac-projects-media img {
  display: block;
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
}

.gwac-projects-media figcaption {
  margin: 0;
  padding: 0.55rem 0.85rem;
  font-size: var(--gwac-text-small);
  color: var(--gwac-accent);
  background: rgba(255, 248, 248, 0.95);
  border-top: 1px solid rgba(32, 43, 93, 0.06);
}

.gwac-projects-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.gwac-projects-facts li {
  display: grid;
  gap: 0.15rem;
}

.gwac-projects-facts strong {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gwac-primary);
  font-weight: 800;
}

.gwac-projects-facts span {
  color: var(--gwac-secondary);
  font-size: var(--gwac-text-small);
  line-height: 1.45;
}

.gwac-projects-workflow {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  counter-reset: projstep;
}

.gwac-projects-workflow > li {
  counter-increment: projstep;
  position: relative;
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: 14px;
  padding: 1.15rem 1.1rem 1.15rem 1.15rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
}

.gwac-projects-workflow > li::before {
  content: counter(projstep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  background: var(--gwac-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.gwac-projects-workflow__when {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #515b90;
}

.gwac-projects-workflow h3 {
  margin: 0 0 0.4rem;
  font-size: var(--gwac-text-body);
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-projects-workflow p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-projects-tracks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.gwac-projects-track {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: 14px;
  padding: 1.2rem 1.15rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.gwac-projects-track:hover {
  border-color: rgba(178, 36, 114, 0.22);
  box-shadow: 0 14px 28px rgba(32, 43, 93, 0.07);
  transform: translateY(-2px);
}

.gwac-projects-track__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gwac-projects-track__icon {
  color: #515b90;
  display: inline-flex;
}

.gwac-projects-track:hover .gwac-projects-track__icon {
  color: var(--gwac-primary);
}

.gwac-projects-track__tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gwac-accent);
  background: rgba(243, 221, 227, 0.75);
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: 6px;
  padding: 0.25rem 0.45rem;
}

.gwac-projects-track h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-projects-track > p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
  flex: 1;
}

.gwac-projects-track__foot {
  margin-top: 0.95rem !important;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(32, 43, 93, 0.08);
  color: #515b90 !important;
  font-weight: 700;
  font-size: 0.78rem !important;
}

@media (max-width: 960px) {
  .gwac-projects-flagship,
  .gwac-projects-split {
    grid-template-columns: 1fr;
  }

  .gwac-projects-workflow,
  .gwac-projects-tracks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gwac-projects-workflow,
  .gwac-projects-tracks {
    grid-template-columns: 1fr;
  }
}

/* —— Resources library (MPPR) —— */
.gwac-resources {
  padding-block: clamp(1.75rem, 3vw, 2.75rem) var(--gwac-inner-pad-bottom, 3.5rem);
}

.gwac-resources-howto {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(178, 36, 114, 0.22);
  background:
    linear-gradient(135deg, rgba(178, 36, 114, 0.06), transparent 55%),
    #fff;
}

.gwac-resources-howto h2 {
  margin: 0;
  color: var(--gwac-secondary);
  font-size: 1.05rem;
  font-weight: 800;
}

.gwac-resources-howto p {
  margin: 0;
  max-width: 46rem;
  color: var(--gwac-accent);
  font-size: 0.95rem;
  line-height: 1.55;
}

.gwac-resources-howto .gwac-btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.gwac-resources-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.gwac-resources-intro__title {
  margin: 0 0 0.25rem;
  color: var(--gwac-secondary);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gwac-resources-intro__lead {
  margin: 0;
  color: var(--gwac-accent);
  max-width: 40rem;
}

.gwac-resources-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 13rem);
  gap: 0.65rem;
  max-width: 40rem;
}

@media (max-width: 700px) {
  .gwac-resources-toolbar {
    grid-template-columns: 1fr;
  }
}

.gwac-resources-search,
.gwac-resources-filter {
  position: relative;
  display: block;
  margin: 0;
}

.gwac-resources-search__icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gwac-accent);
  display: inline-flex;
  pointer-events: none;
}

.gwac-resources-search input,
.gwac-resources-filter select {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(32, 43, 93, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--gwac-secondary);
  font: inherit;
  font-size: var(--gwac-text-body);
  padding: 0.7rem 0.9rem;
}

.gwac-resources-search input {
  padding-left: 2.5rem;
}

.gwac-resources-list {
  display: grid;
  gap: 0.75rem;
}

.gwac-resources-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 0.35rem 1rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gwac-resources-row:hover {
  border-color: rgba(178, 36, 114, 0.28);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.gwac-resources-row--featured {
  border-color: rgba(178, 36, 114, 0.35);
  background:
    linear-gradient(90deg, rgba(178, 36, 114, 0.06), transparent 42%),
    #fff;
}

.gwac-resources-row__ext {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  height: auto;
  padding: 0.18rem 0.38rem;
  margin-bottom: 0.15rem;
  border-radius: 999px;
  background: rgba(32, 43, 93, 0.08);
  color: var(--gwac-secondary);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.35;
}

.gwac-resources-row__tags {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-self: start;
  align-self: end;
  margin-bottom: 0.15rem;
}

.gwac-resources-row__date {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: end;
  margin-bottom: 0.15rem;
}

.gwac-resources-row__main {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
}

.gwac-resources-row__action {
  grid-column: 3;
  grid-row: 1 / -1;
  align-self: center;
  flex-shrink: 0;
}

.gwac-resources-tag,
.gwac-resources-pill {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gwac-resources-tag {
  background: rgba(32, 43, 93, 0.08);
  color: var(--gwac-secondary);
}

.gwac-resources-pill {
  background: rgba(178, 36, 114, 0.12);
  color: var(--gwac-primary);
}

.gwac-resources-date {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 600;
}

.gwac-resources-row__title {
  margin: 0 0 0.2rem;
  color: var(--gwac-secondary);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.gwac-resources-row__body {
  margin: 0 0 0.35rem;
  color: var(--gwac-accent);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gwac-resources-row__facts {
  margin: 0;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 600;
}

.gwac-resources-row--featured .gwac-resources-row__ext {
  background: rgba(178, 36, 114, 0.12);
  color: var(--gwac-primary);
}

.gwac-resources-row__action .gwac-btn {
  white-space: nowrap;
}

.gwac-resources-empty,
.gwac-resources-blank {
  margin-top: 0.75rem;
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  border: 1px dashed rgba(32, 43, 93, 0.2);
  background: #fff;
  color: var(--gwac-accent);
}

.gwac-resources-blank p + p {
  margin-top: 0.4rem;
}

.gwac-resources-blank .gwac-btn {
  margin-top: 0.85rem;
}

.gwac-resources-note {
  margin-top: 1.75rem;
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(160deg, #1a244f 0%, #202b5d 100%);
  color: #fff;
}

.gwac-resources-note h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.gwac-resources-note p {
  margin: 0 0 1rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

@media (max-width: 800px) {
  .gwac-resources-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "ext tags"
      "main main"
      "date action";
    gap: 0.55rem 0.75rem;
    align-items: start;
  }

  .gwac-resources-row__ext {
    grid-area: ext;
    grid-row: auto;
    align-self: start;
    justify-self: start;
    margin: 0;
  }

  .gwac-resources-row__tags {
    grid-area: tags;
    grid-row: auto;
    justify-self: end;
    align-self: start;
    margin: 0;
  }

  .gwac-resources-row__main {
    grid-area: main;
    grid-row: auto;
  }

  .gwac-resources-row__date {
    grid-area: date;
    grid-row: auto;
    justify-self: start;
    align-self: center;
    margin: 0;
  }

  .gwac-resources-row__action {
    grid-area: action;
    grid-row: auto;
    justify-self: end;
    align-self: center;
  }

  .gwac-resources-row__action .gwac-btn {
    min-width: 7.5rem;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gwac-resources-row {
    transition: none;
  }
}

/* —— Manage resources (upload + library) —— */
.gwac-manage-upload .fitem,
.gwac-manage-library .table {
  margin-bottom: 0.75rem;
}

.gwac-manage-table code {
  font-size: 0.85em;
  word-break: break-all;
}

#gwac-resource-edit-modal .modal-title {
  margin: 0;
}

/* —— People directories (facilitators / participants) —— */
.gwac-landing-section.gwac-people {
  padding-block: clamp(1.15rem, 2vw, 1.65rem) clamp(1.75rem, 2.5vw, 2.25rem);
}

.gwac-people {
  padding-block: 0;
}

.gwac-people-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gwac-people-stat {
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  border-radius: 14px;
  padding: 1.15rem 1rem;
  text-align: center;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
}

.gwac-people-stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gwac-secondary);
  line-height: 1.1;
}

.gwac-people-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gwac-accent);
}

.gwac-people-stat:last-child {
  border-top: 3px solid #515b90;
}

.gwac-people-head {
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(32, 43, 93, 0.1);
}

.gwac-people-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-people-head p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
  max-width: 46rem;
}

.gwac-people-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.gwac-people-search {
  position: relative;
  display: block;
  flex: 1 1 16rem;
  min-width: min(100%, 16rem);
}

.gwac-people-search__icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--gwac-accent);
  display: inline-flex;
  pointer-events: none;
}

.gwac-people-search input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(32, 43, 93, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--gwac-secondary);
  font: inherit;
  padding: 0.7rem 0.9rem 0.7rem 2.5rem;
}

.gwac-people-count {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  font-weight: 600;
}

.gwac-people-count strong {
  color: var(--gwac-primary);
  font-weight: 800;
}

.gwac-people-grid {
  display: grid;
  gap: 0.85rem;
}

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

.gwac-people-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #dfe3ef;
  border: 1px solid rgba(32, 43, 93, 0.1);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  scroll-margin-top: 8rem;
}

.gwac-people-card--openable {
  cursor: pointer;
}

.gwac-people-card__visual {
  position: absolute;
  inset: 0;
}

.gwac-people-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.gwac-people-card:not(.is-open):hover .gwac-people-card__photo {
  transform: scale(1.04);
}

.gwac-people-card__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gwac-primary);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 45%),
    linear-gradient(145deg, rgba(178, 36, 114, 0.16), rgba(81, 91, 144, 0.18));
}

.gwac-people-card__badge {
  position: absolute;
  z-index: 3;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.26rem 0.5rem;
  border-radius: 6px;
  background: var(--gwac-primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(32, 43, 93, 0.22);
}

.gwac-people-card__badge--lead {
  background: var(--gwac-secondary, #202b5d);
}

.gwac-people-card__badge--mentor {
  background: #5a6b8c;
}

.gwac-people-card__badge--coordinator {
  background: #3d5a80;
}

.gwac-people-card__badge--observer {
  background: #6c757d;
}

.gwac-people-card__badge--presenter {
  background: #8b6f9e;
}

.gwac-people-card__overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.55rem 0.7rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 42, 0) 0%,
    rgba(12, 18, 42, 0.5) 48%,
    rgba(12, 18, 42, 0.94) 100%
  );
  pointer-events: none;
}

.gwac-people-card__overlay a,
.gwac-people-card__overlay button {
  pointer-events: auto;
}

.gwac-people-card__name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.gwac-people-card__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.gwac-people-card__loc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gwac-people-card__footer {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.gwac-people-card__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  min-width: 0;
}

.gwac-people-card__social {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.gwac-people-card__social svg {
  width: 0.85rem;
  height: 0.85rem;
}

.gwac-people-card__social:hover,
.gwac-people-card__social:focus-visible {
  background: var(--gwac-primary);
  border-color: var(--gwac-primary);
  transform: translateY(-1px);
  outline: none;
  color: #fff;
}

.gwac-people-card__social--orcid:hover,
.gwac-people-card__social--orcid:focus-visible {
  background: #a6ce39;
  border-color: #a6ce39;
  color: #1a2e05;
}

.gwac-people-card__more {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.gwac-people-card__more:hover,
.gwac-people-card__more:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.65);
  outline: none;
}

.gwac-people-card__panel {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(178, 36, 114, 0.2), transparent 42%),
    linear-gradient(160deg, #1a244f 0%, #202b5d 55%, #2a356e 100%);
  transform: translateY(104%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.gwac-people-card.is-open .gwac-people-card__panel {
  transform: translateY(0);
  pointer-events: auto;
}

.gwac-people-card__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.gwac-people-card__close:hover,
.gwac-people-card__close:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  outline: none;
}

.gwac-people-card__panel-body {
  flex: 1;
  min-height: 0;
  padding: 2.55rem 0.95rem 0.95rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.gwac-people-card__panel .gwac-people-card__name {
  padding-right: 2rem;
  text-shadow: none;
  font-size: 1.05rem;
}

.gwac-people-card__subtitle {
  margin: 0;
  color: rgba(255, 214, 232, 0.95);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.gwac-people-card__panel .gwac-people-card__meta {
  display: block;
  -webkit-line-clamp: unset;
  color: rgba(255, 255, 255, 0.9);
}

.gwac-people-card__panel .gwac-people-card__loc {
  white-space: normal;
  color: rgba(255, 255, 255, 0.68);
}

.gwac-people-card__bio {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.gwac-people-card__socials--panel {
  margin-top: auto;
  padding-top: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .gwac-people-card__photo,
  .gwac-people-card__panel {
    transition: none;
  }
}

.gwac-people-empty,
.gwac-people-blank {
  margin-top: 0.75rem;
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  border: 1px dashed rgba(32, 43, 93, 0.18);
  background: #fff;
  color: var(--gwac-accent);
}

.gwac-landing-hero__actions .gwac-btn--secondary {
  color: #fff !important;
}

@media (max-width: 1100px) {
  .gwac-people-grid--facilitators,
  .gwac-people-grid--participants {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gwac-people-grid--facilitators,
  .gwac-people-grid--participants {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

@media (max-width: 480px) {
  .gwac-people-stats {
    grid-template-columns: 1fr;
  }

  .gwac-people-toolbar {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .gwac-people-search {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }

  .gwac-people-count {
    text-align: left;
  }

  .gwac-landing-nav__tabs a {
    padding-inline: 0.65rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 360px) {
  .gwac-people-grid--facilitators,
  .gwac-people-grid--participants {
    grid-template-columns: 1fr;
  }
}

/* —— MPPR / One Health overview visual refresh —— */
.gwac-landing--overview {
  overflow-x: visible;
}

.gwac-landing-stats--icons .gwac-landing-stats__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}

.gwac-landing-stats__copy {
  min-width: 0;
}

.gwac-landing-stats__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin: 0;
  border-radius: 12px;
  color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.1);
}

.gwac-landing-stats__icon svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.gwac-landing-stats__copy strong {
  display: block;
  margin: 0;
}

.gwac-landing-section--glance {
  background:
    radial-gradient(circle at 100% 0%, rgba(178, 36, 114, 0.05), transparent 28%),
    linear-gradient(180deg, #f8f6f8 0%, #fff 100%);
  padding-block: clamp(2.5rem, 4.5vw, 4.25rem);
}

.gwac-overview-glance__wrap {
  display: grid;
  gap: clamp(1.35rem, 2.5vw, 2rem);
}

.gwac-overview-glance__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: end;
  padding-bottom: clamp(1.15rem, 2vw, 1.65rem);
  border-bottom: 1px solid rgba(32, 43, 93, 0.08);
}

.gwac-overview-glance__intro-copy h2 {
  margin: 0 0 0.65rem;
  font-size: var(--gwac-text-display);
  font-weight: 800;
  color: var(--gwac-secondary);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.gwac-overview-glance__intro-copy p {
  margin: 0;
  max-width: 42rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-body);
  line-height: 1.55;
}

.gwac-overview-glance__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  max-width: 18rem;
}

.gwac-overview-glance__chips li {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.1);
  color: var(--gwac-secondary);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 6px 14px rgba(32, 43, 93, 0.04);
}

.gwac-overview-glance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.25rem);
}

.gwac-overview-glance__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: var(--gwac-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(32, 43, 93, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s var(--landing-ease), transform 0.2s var(--landing-ease);
}

.gwac-overview-glance__card--format {
  border-top: 3px solid rgba(178, 36, 114, 0.55);
}

.gwac-overview-glance__card--skills {
  border-top: 3px solid rgba(32, 43, 93, 0.35);
}

.gwac-overview-glance__card:hover {
  border-color: rgba(178, 36, 114, 0.22);
  box-shadow: 0 18px 36px rgba(32, 43, 93, 0.09);
  transform: translateY(-3px);
}

.gwac-overview-glance__card--accent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  background: linear-gradient(160deg, #1a244f 0%, var(--gwac-secondary) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  border-top: 0;
  color: #fff;
}

.gwac-overview-glance__card--accent:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.gwac-overview-glance__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.gwac-overview-glance__card:not(.gwac-overview-glance__card--accent) .gwac-overview-glance__media {
  aspect-ratio: 16 / 10;
}

.gwac-overview-glance__media img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  display: block;
}

.gwac-overview-glance__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 26, 58, 0.08), rgba(18, 26, 58, 0.55));
}

.gwac-overview-glance__media-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.gwac-overview-glance__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: clamp(1.15rem, 2vw, 1.45rem);
}

.gwac-overview-glance__head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.gwac-overview-glance__head--compact {
  display: block;
  margin-bottom: 0.65rem;
}

.gwac-overview-glance__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.1);
}

.gwac-overview-glance__icon svg {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
}

.gwac-overview-glance__card--skills .gwac-overview-glance__icon {
  color: var(--gwac-secondary);
  background: rgba(32, 43, 93, 0.08);
}

.gwac-overview-glance__label {
  margin: 0 0 0.2rem;
  color: var(--gwac-primary);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gwac-overview-glance__card--skills .gwac-overview-glance__label {
  color: var(--gwac-secondary);
}

.gwac-overview-glance__card--accent .gwac-overview-glance__label,
.gwac-overview-glance__card--accent h3,
.gwac-overview-glance__card--accent .gwac-overview-glance__text,
.gwac-overview-glance__card--accent .gwac-overview-glance__bullets {
  color: #fff;
}

.gwac-overview-glance__card--accent .gwac-overview-glance__label {
  color: rgba(255, 255, 255, 0.72);
}

.gwac-overview-glance__card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 800;
  color: var(--gwac-secondary);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.gwac-overview-glance__card--accent h3 {
  color: #fff;
}

.gwac-overview-glance__text {
  margin: 0 0 0.85rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-overview-glance__card--accent .gwac-overview-glance__text {
  color: rgba(255, 255, 255, 0.86);
}

.gwac-overview-glance__bullets {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0.85rem;
  display: grid;
  gap: 0.45rem;
  border-radius: 12px;
  background: rgba(32, 43, 93, 0.03);
  border: 1px solid rgba(32, 43, 93, 0.06);
}

.gwac-overview-glance__bullets li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--gwac-secondary);
}

.gwac-overview-glance__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gwac-primary);
}

.gwac-overview-glance__card--skills .gwac-overview-glance__bullets li::before {
  background: var(--gwac-secondary);
}

.gwac-overview-glance__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.gwac-overview-glance__fact {
  padding: 0.62rem 0.72rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gwac-overview-glance__fact span {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
}

.gwac-overview-glance__fact strong {
  display: block;
  font-size: 0.86rem;
  color: #fff;
  line-height: 1.35;
}

.gwac-overview-glance__footer {
  margin-top: auto;
  padding-top: 1rem;
}

.gwac-overview-glance__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(178, 36, 114, 0.1);
  color: var(--gwac-primary) !important;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease, gap 0.15s ease;
}

.gwac-overview-glance__cta:hover {
  background: rgba(178, 36, 114, 0.16);
  gap: 0.6rem;
}

.gwac-overview-glance__card--skills .gwac-overview-glance__cta {
  background: rgba(32, 43, 93, 0.08);
  color: var(--gwac-secondary) !important;
}

.gwac-overview-glance__card--skills .gwac-overview-glance__cta:hover {
  background: rgba(32, 43, 93, 0.12);
}

.gwac-overview-glance__cta--accent {
  background: var(--gwac-primary);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(178, 36, 114, 0.28);
}

.gwac-overview-glance__cta--accent:hover {
  background: #9a1d62;
  color: #fff !important;
}

.gwac-overview-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: clamp(18rem, 34vw, 24rem);
  background: var(--gwac-secondary);
}

.gwac-overview-showcase__media {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
}

.gwac-overview-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gwac-overview-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, rgba(26, 36, 79, 0.92) 100%);
}

.gwac-overview-showcase__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
}

.gwac-overview-showcase__panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.gwac-overview-showcase__panel > p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.gwac-overview-showcase__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.gwac-overview-showcase__point {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gwac-overview-showcase__point strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.gwac-overview-showcase__point span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.gwac-overview-outcomes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.1rem);
}

.gwac-overview-outcomes__card {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: var(--gwac-radius-lg);
  box-shadow: 0 10px 24px rgba(32, 43, 93, 0.04);
  transition: border-color 0.2s ease, transform 0.2s var(--landing-ease);
}

.gwac-overview-outcomes__card:hover {
  border-color: rgba(178, 36, 114, 0.22);
  transform: translateY(-2px);
}

.gwac-overview-outcomes__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.1);
}

.gwac-overview-outcomes__icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.gwac-overview-outcomes__card p {
  margin: 0;
  color: var(--gwac-secondary);
  font-size: var(--gwac-text-small);
  font-weight: 600;
  line-height: 1.45;
}

.gwac-overview-parts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.gwac-overview-part {
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: var(--gwac-radius-lg);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  box-shadow: 0 12px 28px rgba(32, 43, 93, 0.05);
}

.gwac-overview-part--essentials {
  border-top: 4px solid rgba(178, 36, 114, 0.55);
}

.gwac-overview-part--advanced {
  border-top: 4px solid var(--gwac-secondary);
}

.gwac-overview-part__head {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.gwac-overview-part__num {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(178, 36, 114, 0.14), rgba(32, 43, 93, 0.06));
  color: var(--gwac-primary);
  font-weight: 800;
  font-size: 0.82rem;
}

.gwac-overview-part__head h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 800;
  color: var(--gwac-secondary);
  line-height: 1.22;
}

.gwac-overview-part__summary {
  margin: 0 0 1rem;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-overview-part__days {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.gwac-overview-part__days li {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(32, 43, 93, 0.03);
  border: 1px solid rgba(32, 43, 93, 0.05);
}

.gwac-overview-part__day {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gwac-primary);
}

.gwac-overview-part__days p {
  margin: 0;
  color: var(--gwac-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
}

.gwac-overview-capstone {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.gwac-overview-capstone__media {
  position: relative;
  margin: 0;
  border-radius: var(--gwac-radius-lg);
  overflow: hidden;
  min-height: 18rem;
  box-shadow: 0 18px 36px rgba(32, 43, 93, 0.12);
}

.gwac-overview-capstone__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gwac-overview-capstone__media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(18, 26, 58, 0.92));
}

.gwac-overview-capstone__badge,
.gwac-overview-capstone__when {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gwac-overview-capstone__badge {
  color: #fff;
  background: var(--gwac-primary);
}

.gwac-overview-capstone__when {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.gwac-overview-capstone__main,
.gwac-overview-capstone__aside {
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: var(--gwac-radius-lg);
  padding: clamp(1.2rem, 2vw, 1.65rem);
  box-shadow: 0 12px 28px rgba(32, 43, 93, 0.05);
}

.gwac-overview-capstone__aside {
  background: linear-gradient(160deg, #1a244f 0%, var(--gwac-secondary) 100%);
  color: #fff;
  border-color: transparent;
}

.gwac-overview-capstone__main h2,
.gwac-overview-capstone__aside h3 {
  margin: 0 0 0.55rem;
  font-weight: 800;
  color: var(--gwac-secondary);
  letter-spacing: -0.02em;
}

.gwac-overview-capstone__aside h3,
.gwac-overview-capstone__aside p,
.gwac-overview-capstone__aside li {
  color: rgba(255, 255, 255, 0.9);
}

.gwac-overview-capstone__main > p,
.gwac-overview-capstone__aside > p {
  margin: 0 0 0.85rem;
  color: var(--gwac-accent);
  line-height: 1.55;
  font-size: var(--gwac-text-small);
}

.gwac-overview-capstone__list,
.gwac-overview-capstone__aside ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.gwac-overview-capstone__list li,
.gwac-overview-capstone__aside li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--gwac-text-small);
  font-weight: 600;
  line-height: 1.45;
}

.gwac-overview-capstone__list li::before,
.gwac-overview-capstone__aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gwac-primary);
}

.gwac-overview-capstone__aside li::before {
  background: #fff;
}

.gwac-overview-cert {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.gwac-overview-cert__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(8rem, 0.75fr);
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
  align-items: center;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  background: #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
  border-radius: var(--gwac-radius-lg);
  box-shadow: 0 12px 28px rgba(32, 43, 93, 0.05);
}

.gwac-overview-cert__badge {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--gwac-primary), #8f1d5c);
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 24px rgba(178, 36, 114, 0.28);
}

.gwac-overview-cert__badge span {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.gwac-overview-cert__badge small {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.gwac-overview-cert__copy h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-overview-cert__copy p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

.gwac-overview-cert__media {
  border-radius: 12px;
  overflow: hidden;
  min-height: 6.5rem;
  background:
    linear-gradient(160deg, rgba(32, 43, 93, 0.04), rgba(178, 36, 114, 0.05)),
    #fff;
  border: 1px solid rgba(32, 43, 93, 0.08);
}

.gwac-cert-preview {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  text-align: left;
  transition: transform 0.2s var(--landing-ease), box-shadow 0.2s var(--landing-ease);
}

.gwac-cert-preview:hover,
.gwac-cert-preview:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(32, 43, 93, 0.12);
  outline: none;
}

.gwac-cert-preview:focus-visible {
  box-shadow: 0 0 0 3px rgba(178, 36, 114, 0.28), 0 10px 24px rgba(32, 43, 93, 0.12);
}

.gwac-cert-preview__hint {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(32, 43, 93, 0.78);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.gwac-overview-cert__media img {
  width: 100%;
  height: 100%;
  min-height: 6.5rem;
  object-fit: contain;
  display: block;
  background: #fff;
}

.gwac-cert-lightbox {
  width: min(96vw, 72rem);
  max-width: 96vw;
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.gwac-cert-lightbox::backdrop {
  background: rgba(16, 22, 48, 0.84);
  backdrop-filter: blur(4px);
}

.gwac-cert-lightbox__panel {
  position: relative;
  margin: 0;
  padding: 0.55rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.35);
}

.gwac-cert-lightbox__panel img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(92vh - 2rem);
  object-fit: contain;
  border-radius: 8px;
}

.gwac-cert-lightbox__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 43, 93, 0.88);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gwac-cert-lightbox__close:hover,
.gwac-cert-lightbox__close:focus-visible {
  background: var(--gwac-primary);
  transform: scale(1.04);
  outline: none;
}

.gwac-overview-cert__partners {
  padding: clamp(1.15rem, 2vw, 1.55rem);
  border-radius: var(--gwac-radius-lg);
  background: linear-gradient(160deg, rgba(32, 43, 93, 0.04), rgba(178, 36, 114, 0.06));
  border: 1px solid rgba(32, 43, 93, 0.08);
}

.gwac-overview-cert__partners-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  color: var(--gwac-primary);
  background: rgba(178, 36, 114, 0.1);
}

.gwac-overview-cert__partners h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 800;
  color: var(--gwac-secondary);
}

.gwac-overview-cert__partners p {
  margin: 0;
  color: var(--gwac-accent);
  font-size: var(--gwac-text-small);
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .gwac-overview-glance__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gwac-overview-glance__chips {
    justify-content: flex-start;
    max-width: none;
  }

  .gwac-overview-capstone {
    grid-template-columns: 1fr 1fr;
  }

  .gwac-overview-capstone__media {
    grid-column: 1 / -1;
    min-height: 16rem;
  }

  .gwac-overview-cert__card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .gwac-overview-cert__media {
    grid-column: 1 / -1;
    min-height: 10rem;
  }
}

@media (max-width: 860px) {
  .gwac-overview-glance,
  .gwac-overview-glance__card--accent,
  .gwac-overview-parts,
  .gwac-overview-capstone,
  .gwac-overview-cert {
    grid-template-columns: 1fr;
  }

  .gwac-overview-glance__card--accent {
    grid-template-columns: 1fr;
  }

  .gwac-overview-glance__media img {
    min-height: 12rem;
  }

  .gwac-overview-showcase {
    grid-template-columns: 1fr;
  }

  .gwac-overview-showcase__media {
    min-height: 14rem;
  }

  .gwac-overview-showcase__media::after {
    background: linear-gradient(180deg, transparent 20%, rgba(26, 36, 79, 0.92) 100%);
  }

  .gwac-overview-showcase__points {
    grid-template-columns: 1fr;
  }

  .gwac-overview-part__days li {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .gwac-overview-glance {
    grid-template-columns: 1fr;
  }

  .gwac-landing-stats--icons .gwac-landing-stats__item {
    padding-block: 1rem;
  }

  .gwac-overview-outcomes {
    grid-template-columns: 1fr;
  }

  .gwac-overview-part__days li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gwac-overview-glance__card:hover,
  .gwac-overview-outcomes__card:hover {
    transform: none;
  }
}
