:root {
  --sw-ink: #123f6d;
  --sw-ink-soft: #315d83;
  --sw-navy: #0a2847;
  --sw-blue: #176eb5;
  --sw-blue-deep: #104f87;
  --sw-blue-soft: #dff0fb;
  --sw-sky: #f5fbff;
  --sw-line: rgba(18, 63, 109, 0.14);
  --sw-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sw-sky);
  color: var(--sw-ink);
  font-family: "Red Hat Display", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

.sw-page {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(223, 240, 251, 0.9), rgba(245, 251, 255, 0) 520px),
    var(--sw-sky);
}

.sw-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sw-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--sw-line);
  background: rgba(245, 251, 255, 0.92);
  backdrop-filter: blur(16px);
}

.sw-nav-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sw-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sw-brand img {
  width: 108px;
  height: auto;
}

.sw-brand span {
  max-width: 148px;
  color: var(--sw-ink-soft);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sw-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sw-ink-soft);
  font-size: 15px;
  font-weight: 800;
}

.sw-nav-links a,
.sw-nav-link {
  text-decoration: none;
}

.sw-nav-item {
  position: relative;
}

.sw-nav-link {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--sw-ink-soft);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sw-nav-link::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--sw-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.sw-nav-item:hover .sw-nav-link,
.sw-nav-item:focus-within .sw-nav-link,
.sw-nav-link:hover {
  background: rgba(23, 110, 181, 0.08);
  color: var(--sw-blue-deep);
  transform: translateY(-1px);
}

.sw-nav-item:hover .sw-nav-link::after,
.sw-nav-item:focus-within .sw-nav-link::after,
.sw-nav-link:hover::after {
  transform: scaleX(1);
}

.sw-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 310px;
  gap: 8px;
  border: 1px solid rgba(18, 63, 109, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(10, 40, 71, 0.16);
  opacity: 0;
  padding: 12px;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.98);
  transform-origin: top;
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.sw-dropdown::before {
  content: "";
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 13px;
}

.sw-nav-item:hover .sw-dropdown,
.sw-nav-item:focus-within .sw-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.sw-dropdown-link {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 8px;
  color: var(--sw-ink);
  padding: 12px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.sw-dropdown-link:hover,
.sw-dropdown-link:focus {
  background: var(--sw-blue-soft);
  transform: translateX(3px);
}

.sw-dropdown-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--sw-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.sw-dropdown-link strong {
  display: block;
  margin-bottom: 3px;
  color: var(--sw-navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.sw-dropdown-link span:not(.sw-dropdown-icon) {
  display: block;
  color: var(--sw-ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.sw-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--sw-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 22px;
  box-shadow: 0 14px 30px rgba(23, 110, 181, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sw-button:hover {
  transform: translateY(-1px);
  background: var(--sw-blue-deep);
  box-shadow: 0 18px 38px rgba(23, 110, 181, 0.28);
}

.sw-button.secondary {
  border-color: var(--sw-line);
  background: #fff;
  color: var(--sw-ink);
  box-shadow: none;
}

.sw-button.secondary:hover {
  background: var(--sw-blue-soft);
}

.sw-hero,
.sw-subhero {
  padding: 22px 0 54px;
}

.sw-hero-media {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--sw-navy);
  box-shadow: 0 24px 70px rgba(10, 40, 71, 0.18);
}

.sw-hero-media video,
.sw-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 40, 71, 0.82) 0%, rgba(10, 40, 71, 0.56) 40%, rgba(10, 40, 71, 0.12) 72%),
    linear-gradient(0deg, rgba(10, 40, 71, 0.62), rgba(10, 40, 71, 0.08) 54%);
}

.sw-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 5vw, 58px);
}

.sw-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  padding: 9px 13px;
  text-transform: uppercase;
}

.sw-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #76b7e5;
}

.sw-hero-copy {
  width: min(760px, 100%);
  color: #fff;
}

.sw-hero h1 {
  max-width: 920px;
  margin: 26px 0 18px;
  color: #fff;
  font-size: clamp(54px, 8.6vw, 110px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sw-subhero h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.7vw, 76px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sw-hero-copy p,
.sw-subhero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.sw-subhero p {
  font-size: clamp(17px, 1.7vw, 22px);
}

.sw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sw-hero-actions .sw-button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
}

.sw-hero-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(760px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(12px);
}

.sw-stat {
  padding: 18px;
  background: rgba(10, 40, 71, 0.44);
}

.sw-stat strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.sw-stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.sw-section {
  padding: 88px 0;
}

.sw-section.aqua,
.sw-section.blue {
  background: var(--sw-blue-soft);
}

.sw-section.tight {
  padding-top: 58px;
}

.sw-kicker {
  margin: 0 0 12px;
  color: var(--sw-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sw-heading {
  margin: 0;
  color: var(--sw-navy);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sw-lede {
  margin: 0;
  color: var(--sw-ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.55;
}

.sw-intro,
.sw-process,
.sw-detail-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.sw-checks {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.sw-check {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--sw-ink-soft);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.sw-check span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--sw-blue);
  font-size: 17px;
  font-weight: 900;
}

.sw-card-grid,
.sw-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

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

.sw-card,
.sw-program-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(10, 40, 71, 0.08);
}

.sw-card img,
.sw-program-card img {
  width: 100%;
  height: 246px;
  object-fit: cover;
}

.sw-card-body,
.sw-program-card-body {
  padding: 26px;
}

.sw-card h3,
.sw-program-card h3 {
  margin: 0 0 10px;
  color: var(--sw-navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.sw-card p,
.sw-program-card p {
  margin: 0 0 22px;
  color: var(--sw-ink-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.sw-card-link {
  color: var(--sw-blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sw-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.sw-feature-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  padding: clamp(28px, 5vw, 58px);
}

.sw-feature-copy .sw-heading {
  margin-bottom: 22px;
}

.sw-feature-copy .sw-lede {
  margin-bottom: 28px;
}

.sw-feature-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  background: var(--sw-navy);
}

.sw-feature-media video,
.sw-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-mini-grid,
.sw-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.sw-mini,
.sw-detail-item {
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  background: var(--sw-sky);
  padding: 18px;
}

.sw-mini strong,
.sw-detail-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--sw-navy);
  font-size: 17px;
  font-weight: 900;
}

.sw-mini span,
.sw-detail-item span {
  color: var(--sw-ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.sw-steps {
  display: grid;
  border-top: 1px solid var(--sw-line);
}

.sw-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--sw-line);
  padding: 24px 0;
}

.sw-step-num {
  color: var(--sw-blue);
  font-size: 22px;
  font-weight: 900;
}

.sw-step h3 {
  margin: 0 0 8px;
  color: var(--sw-navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.sw-step p {
  margin: 0;
  color: var(--sw-ink-soft);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.sw-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 240px;
  gap: 16px;
  margin-top: 34px;
}

.sw-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--sw-navy);
}

.sw-gallery figure:first-child {
  grid-row: span 2;
}

.sw-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-gallery .sw-safe-headshot {
  object-position: 50% 18%;
}

.sw-subhero-card .sw-safe-headshot,
.sw-card .sw-safe-headshot,
.sw-program-card .sw-safe-headshot {
  object-position: 50% 18%;
}

.sw-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: 8px;
  background: rgba(10, 40, 71, 0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}

.sw-sponsor {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border: 1px solid rgba(18, 63, 109, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: clamp(26px, 5vw, 56px);
  box-shadow: 0 20px 54px rgba(10, 40, 71, 0.08);
}

.sw-sponsor-mark {
  display: grid;
  min-height: 230px;
  place-items: center;
  border-right: 1px solid var(--sw-line);
  padding-right: clamp(24px, 4vw, 52px);
}

.sw-sponsor-mark img {
  width: min(100%, 438px);
  height: auto;
}

.sw-sponsor-copy h2 {
  margin: 0 0 18px;
  color: var(--sw-navy);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sw-sponsor-copy p {
  margin: 0;
  color: var(--sw-ink-soft);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.sw-sponsor-copy strong {
  color: var(--sw-navy);
  font-weight: 900;
}

.sw-subhero-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  background: var(--sw-navy);
  box-shadow: 0 24px 70px rgba(10, 40, 71, 0.18);
}

.sw-subhero-card > img,
.sw-subhero-card > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-subhero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 40, 71, 0.86), rgba(10, 40, 71, 0.48) 52%, rgba(10, 40, 71, 0.12)),
    linear-gradient(0deg, rgba(10, 40, 71, 0.52), rgba(10, 40, 71, 0.1));
}

.sw-subhero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(26px, 5vw, 58px);
}

.sw-subhero-content .sw-pill,
.sw-subhero-content h1,
.sw-subhero-content p,
.sw-subhero-content .sw-hero-actions {
  margin-top: 0;
  margin-bottom: 0;
}

.sw-detail-panel {
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 45px rgba(10, 40, 71, 0.06);
}

.sw-detail-panel h2,
.sw-detail-panel h3 {
  margin: 0 0 14px;
  color: var(--sw-navy);
  font-weight: 900;
  line-height: 1.05;
}

.sw-detail-panel h2 {
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
}

.sw-detail-panel h3 {
  font-size: 22px;
}

.sw-detail-panel p,
.sw-detail-panel li {
  color: var(--sw-ink-soft);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.sw-detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.sw-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.sw-contact-card {
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 45px rgba(10, 40, 71, 0.08);
}

.sw-contact-methods {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.sw-contact-method {
  display: grid;
  gap: 5px;
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  background: var(--sw-sky);
  padding: 18px;
}

.sw-contact-method strong {
  color: var(--sw-navy);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sw-contact-method a,
.sw-contact-method span {
  color: var(--sw-ink-soft);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.sw-contact-form {
  display: grid;
  gap: 16px;
}

.sw-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sw-field {
  display: grid;
  gap: 8px;
}

.sw-field label {
  color: var(--sw-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sw-field input,
.sw-field select,
.sw-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(18, 63, 109, 0.18);
  border-radius: 8px;
  background: var(--sw-sky);
  color: var(--sw-navy);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 14px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.sw-field textarea {
  min-height: 150px;
  resize: vertical;
}

.sw-field input:focus,
.sw-field select:focus,
.sw-field textarea:focus {
  border-color: var(--sw-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 110, 181, 0.12);
}

.sw-story {
  display: grid;
  gap: 20px;
}

.sw-story p {
  margin: 0;
}

.sw-aside {
  display: grid;
  gap: 16px;
}

.sw-aside-card {
  border-radius: 8px;
  background: var(--sw-navy);
  color: #fff;
  padding: 24px;
}

.sw-aside-card.light {
  border: 1px solid var(--sw-line);
  background: #fff;
  color: var(--sw-ink);
}

.sw-aside-card h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 22px;
  font-weight: 900;
}

.sw-aside-card p {
  margin: 0 0 18px;
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.sw-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border-radius: 8px;
  background: var(--sw-navy);
  color: #fff;
  padding: clamp(28px, 5vw, 54px);
}

.sw-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(32px, 4.7vw, 58px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sw-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.sw-footer {
  background: #06192e;
  color: #fff;
  padding: 64px 0 28px;
}

.sw-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr 1fr;
  gap: 32px;
}

.sw-footer img {
  width: 132px;
  height: auto;
  margin-bottom: 18px;
}

.sw-footer p,
.sw-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}

.sw-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sw-footer-links {
  display: grid;
  gap: 8px;
}

.sw-footer-sponsor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.sw-footer-sponsor p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.sw-footer .sw-footer-sponsor img {
  width: min(260px, 42vw);
  margin: 0;
  border-radius: 6px;
  background: #fff;
  padding: 10px 12px;
}

.sw-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .sw-nav-links {
    display: none;
  }

  .sw-intro,
  .sw-feature,
  .sw-process,
  .sw-detail-grid,
  .sw-contact-grid,
  .sw-sponsor,
  .sw-cta {
    grid-template-columns: 1fr;
  }

  .sw-sponsor-mark {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--sw-line);
    padding-right: 0;
    padding-bottom: 28px;
  }

  .sw-card-grid,
  .sw-program-grid,
  .sw-program-grid.four,
  .sw-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sw-detail-grid {
    row-gap: 28px;
  }

  .sw-feature-copy,
  .sw-feature-media {
    min-height: 420px;
  }

  .sw-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .sw-shell {
    width: min(100% - 28px, 1180px);
  }

  .sw-nav-inner {
    min-height: 68px;
  }

  .sw-brand span {
    display: none;
  }

  .sw-brand img {
    width: 96px;
  }

  .sw-nav .sw-button {
    min-height: 40px;
    padding: 0 15px;
    font-size: 13px;
  }

  .sw-hero {
    padding-top: 14px;
    padding-bottom: 44px;
  }

  .sw-hero-media {
    min-height: min(690px, calc(100svh - 150px));
  }

  .sw-hero-media::after {
    background: linear-gradient(0deg, rgba(10, 40, 71, 0.84), rgba(10, 40, 71, 0.24));
  }

  .sw-hero-content {
    padding: 18px;
  }

  .sw-hero h1 {
    font-size: clamp(44px, 14.8vw, 62px);
  }

  .sw-subhero h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.98;
  }

  .sw-subhero p {
    font-size: 18px;
    line-height: 1.42;
  }

  .sw-card-grid,
  .sw-program-grid,
  .sw-program-grid.four,
  .sw-field-grid,
  .sw-mini-grid,
  .sw-detail-list,
  .sw-footer-grid {
    grid-template-columns: 1fr;
  }

  .sw-hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .sw-hero-actions .sw-button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

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

  .sw-stat {
    padding: 12px;
  }

  .sw-stat strong {
    font-size: 20px;
  }

  .sw-stat span {
    font-size: 11px;
  }

  .sw-section {
    padding: 66px 0;
  }

  .sw-section.tight {
    padding-top: 48px;
  }

  .sw-subhero {
    padding-top: 18px;
    padding-bottom: 46px;
  }

  .sw-subhero-card {
    min-height: 500px;
  }

  .sw-subhero-content {
    padding: 26px;
  }

  .sw-card img,
  .sw-program-card img {
    height: 230px;
  }

  .sw-feature-copy,
  .sw-feature-media {
    min-height: auto;
  }

  .sw-feature-media {
    aspect-ratio: 4 / 5;
  }

  .sw-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .sw-gallery figure:first-child {
    grid-row: span 1;
  }

  .sw-cta {
    text-align: left;
  }

  .sw-footer-sponsor {
    align-items: flex-start;
    flex-direction: column;
  }

  .sw-footer-bottom {
    flex-direction: column;
  }
}
