:root {
  color-scheme: light;
  --bg: #f5f8fc;
  --paper: #ffffff;
  --paper-soft: #eef5ff;
  --ink: #0f1d2b;
  --muted: #607086;
  --line: #d8e3f0;
  --blue: #075fb8;
  --blue-dark: #003f83;
  --blue-soft: #dcecff;
  --sky: #38a5ff;
  --shadow: 0 18px 44px rgb(0 56 117 / 10%);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main[id],
section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgb(7 95 184 / 18%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgb(10 31 68 / 7%);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(7 95 184 / 30%), transparent);
  content: "";
}

.brand {
  min-width: 0;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  overflow: hidden;
  width: 62px;
  height: 62px;
  min-width: 62px;
  flex: 0 0 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
}

.brand-mark img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark.has-logo {
  border-color: transparent;
}

.brand-mark.has-logo img {
  display: block;
}

.brand-mark.has-logo span {
  display: none;
}

body.site-content-loading [data-home-content],
body.site-content-loading .brand-mark span,
body.site-content-loading [data-home-logo],
body.site-events-loading #public-events-list > *,
body.site-profiles-loading #public-coaches-list > *,
body.site-profiles-loading #public-team-rosters > *,
body.site-profiles-loading #public-teams-list .age-stage-teams > *,
body.site-news-loading #public-news-list > * {
  visibility: hidden;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex-wrap: wrap;
}

.site-nav a,
.header-account-link,
.header-cta,
.text-link {
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

button.text-link {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.site-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #334960;
  padding: 0 11px;
  white-space: nowrap;
}

.site-nav a:hover,
.text-link:hover {
  background: rgb(7 95 184 / 8%);
  color: var(--blue);
}

.header-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.header-social-links {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.social-icon-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(7 95 184 / 18%);
  border-radius: 999px;
  background: #f3f8ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
}

.social-icon-link:hover {
  background: var(--blue);
  color: white;
}

.social-icon-link.has-image {
  border-color: transparent;
  background: transparent;
  color: transparent;
  box-shadow: none;
}

.social-icon-link.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icon-link.has-image:hover {
  background: transparent;
}

.mobile-account-link,
.mobile-social-link {
  display: none !important;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  padding: 0 20px;
  box-shadow: 0 14px 28px rgb(7 95 184 / 18%);
}

.header-account-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(7 95 184 / 24%);
  border-radius: 999px;
  background: white;
  color: var(--blue);
  padding: 0 16px;
  white-space: nowrap;
}

.header-account-link:hover {
  border-color: var(--blue);
  background: rgb(7 95 184 / 8%);
}

.mobile-sticky-cta {
  display: none;
}

.recruitment-banner {
  position: relative;
  z-index: 8;
  overflow: hidden;
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 30px rgb(0 63 131 / 18%);
}

.recruitment-banner::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: white;
  content: "";
  opacity: 0.9;
  pointer-events: none;
}

.recruitment-banner-inner {
  width: min(1520px, calc(100% - 48px));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 auto;
  padding: 12px 0;
}

.recruitment-banner-kicker {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 999px;
  padding: 0 13px;
  color: white;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.recruitment-banner-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 400px);
  gap: 24px;
  align-items: center;
}

.recruitment-banner-copy strong {
  min-width: 0;
  font-size: 26px;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.recruitment-banner-copy span {
  width: 400px;
  max-width: 100%;
  color: rgb(255 255 255 / 82%);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.recruitment-banner-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 999px;
  background: white;
  color: var(--blue-dark);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}

.recruitment-banner-button:hover {
  background: transparent;
  color: white;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--blue-dark);
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 54px;
}

.hero-copy {
  position: relative;
}

.site-mood-badge {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  border: 1px solid rgb(7 95 184 / 18%);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--blue-dark);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.site-mood-badge::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.hero-copy::before {
  position: absolute;
  top: -38px;
  left: -34px;
  z-index: -1;
  width: 128px;
  height: 128px;
  border: 22px solid rgb(7 95 184 / 7%);
  border-radius: 50%;
  content: "";
}

.seo-landing-hero {
  min-height: 620px;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  display: inline-grid;
  grid-template-columns: 34px minmax(0, auto);
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  color: #536a84;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.52;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 650px;
  font-size: 20px;
}

.hero-proof,
.signup-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-proof span,
.signup-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(7 95 184 / 13%);
  border-radius: 999px;
  background: rgb(255 255 255 / 74%);
  color: #314963;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgb(0 63 131 / 6%);
}

.hero-proof span::before,
.signup-assurance span::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 28px rgb(7 95 184 / 22%);
}

.button.primary:hover,
.header-cta:hover {
  background: var(--blue-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--blue-dark);
}

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

.placeholder {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9ddf3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(7 95 184 / 10), rgb(56 165 255 / 4)),
    repeating-linear-gradient(-35deg, transparent 0 18px, rgb(7 95 184 / 6) 18px 19px);
  color: var(--blue-dark);
  font-weight: 900;
  text-align: center;
}

.placeholder::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 34px solid rgb(7 95 184 / 10);
  border-radius: 50%;
  content: "";
}

.placeholder-main {
  min-height: 560px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px;
  text-align: left;
  box-shadow: 0 28px 70px rgb(0 63 131 / 16%);
}

.placeholder-main.is-loading {
  border-color: #dbeafa;
  background: #f4f8ff;
  color: transparent;
}

.placeholder-main.is-loading::after,
.placeholder-main.is-loading > span,
.placeholder-main.is-loading > strong {
  display: none;
}

.placeholder-main.has-image {
  isolation: isolate;
  background-position: center;
  background-size: cover;
  color: white;
}

.placeholder-main.has-image::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgb(7 26 45 / 74%), rgb(7 95 184 / 18));
  content: "";
}

.placeholder-main.has-image::after {
  display: none;
}

.placeholder-main.has-carousel {
  background: #eef5ff;
}

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

.site-mood-decoration {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

body.site-mood-newyear .site-header {
  background: linear-gradient(90deg, rgb(245 250 255 / 97%), rgb(255 255 255 / 97%), rgb(232 244 255 / 97%));
}

body.site-mood-newyear .site-header::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(56 165 255 / 70%), rgb(255 255 255 / 92%), rgb(56 165 255 / 70%), transparent);
}

body.site-mood-newyear .site-mood-badge {
  background: linear-gradient(135deg, #ffffff, #e4f2ff);
  box-shadow: 0 10px 24px rgb(7 95 184 / 10%);
}

body.site-mood-newyear .site-mood-decoration {
  background:
    radial-gradient(circle at 16% 18%, rgb(255 255 255 / 54%) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 27%, rgb(255 255 255 / 44%) 0 2px, transparent 3px),
    linear-gradient(180deg, rgb(220 241 255 / 8%), transparent 46%);
}

body.site-mood-newyear .site-mood-decoration i {
  position: absolute;
  top: -12px;
  left: var(--snow-left);
  width: var(--snow-size);
  height: var(--snow-size);
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 8px rgb(255 255 255 / 72%);
  opacity: 0.78;
}

body.site-mood-newyear.site-mood-motion .site-mood-decoration i {
  animation: site-mood-snow var(--snow-duration) linear var(--snow-delay) infinite;
}

body.site-mood-season .site-header::after {
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark) 0 18%, var(--sky) 18% 42%, var(--blue) 42% 100%);
}

body.site-mood-season .site-mood-badge {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 26px rgb(7 95 184 / 20%);
}

body.site-mood-season .site-mood-badge::before {
  border-radius: 2px;
  transform: rotate(45deg);
}

body.site-mood-season .site-mood-decoration::before {
  position: absolute;
  top: 8%;
  right: 7%;
  bottom: 8%;
  left: 7%;
  border: 2px solid rgb(255 255 255 / 24%);
  border-radius: 80px;
  content: "";
}

body.site-mood-season .site-mood-decoration::after {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(108deg, transparent 0 62px, rgb(56 165 255 / 11%) 62px 65px);
  content: "";
  transform: translateX(-10%);
}

body.site-mood-season.site-mood-motion .site-mood-decoration::after {
  animation: site-mood-season-lines 12s linear infinite;
}

@keyframes site-mood-snow {
  from {
    transform: translate3d(0, -12px, 0);
  }
  to {
    transform: translate3d(18px, 590px, 0);
  }
}

@keyframes site-mood-season-lines {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(10%);
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center;
  background-size: cover;
  color: white;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transition: opacity 0.7s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  display: none;
  pointer-events: none;
}

.hero-slide-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 8px;
  max-width: 520px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgb(7 26 45 / 54%), rgb(7 95 184 / 18));
  padding: 16px;
  backdrop-filter: blur(8px);
}

.hero-slide-caption small {
  width: fit-content;
  border-radius: 999px;
  background: rgb(255 255 255 / 18%);
  color: white;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-slide-caption b {
  font-size: 26px;
  line-height: 1.12;
}

.placeholder-main.has-carousel > span,
.placeholder-main.has-carousel > strong {
  display: none;
}

.hero-carousel-dots {
  position: absolute;
  z-index: 3;
  right: 24px;
  top: 24px;
  display: flex;
  gap: 8px;
}

.hero-carousel-dots:empty {
  display: none;
}

.hero-carousel-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 50%;
  background: rgb(255 255 255 / 28%);
  padding: 0;
  cursor: pointer;
}

.hero-carousel-dots button.is-active {
  background: white;
}

.placeholder-main.has-image span,
.placeholder-main.has-image strong {
  text-shadow: 0 2px 18px rgb(7 26 45 / 34%);
}

.placeholder-main strong {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.placeholder-main > span {
  position: relative;
  z-index: 1;
}

.dynamo-identity-band {
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.dynamo-identity-inner {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  padding: 22px 0;
}

.dynamo-identity-mark {
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.dynamo-identity-mark img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dynamo-identity-mark:has(img[src]) {
  background: white;
  border: 1px solid var(--line);
}

.dynamo-identity-mark:has(img[src]) img {
  display: block;
}

.dynamo-identity-mark:has(img[src]) span {
  display: none;
}

.dynamo-identity-copy {
  display: grid;
  gap: 5px;
}

.dynamo-identity-copy strong {
  color: var(--blue-dark);
  font-size: 17px;
  line-height: 1.25;
}

.dynamo-identity-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.dynamo-identity-years {
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.name-history-section {
  padding-top: 76px;
}

.name-history-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.name-history-timeline::before {
  position: absolute;
  top: 46px;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(7 95 184 / 0), rgb(7 95 184 / 35%), rgb(7 95 184 / 0));
  content: "";
}

.name-history-item {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
  box-shadow: var(--shadow);
}

.name-history-logo {
  overflow: hidden;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(7 95 184 / 14%);
  border-radius: 14px;
  background: white;
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgb(7 45 92 / 8%);
}

.name-history-logo img {
  display: block;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  object-fit: contain;
}

.name-history-copy time {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.name-history-copy h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.name-history-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.name-history-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--paper-soft);
  padding: 22px;
}

.name-history-note h3,
.name-history-note p {
  margin-bottom: 0;
}

.name-history-note h3 {
  color: var(--blue-dark);
  font-size: 22px;
}

.name-history-note .button {
  text-align: center;
}

.facts-band {
  background: var(--blue);
  color: white;
}

.club-stats-band {
  padding: 22px 0;
}

.facts-grid {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

.facts-grid article {
  overflow: hidden;
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius);
  background: var(--blue) !important;
  color: white !important;
  padding: 18px 22px;
  box-shadow: 0 18px 44px rgb(0 0 0 / 16%);
}

.facts-grid small {
  color: rgb(255 255 255 / 72%) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts-grid strong {
  color: white !important;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading > p,
.section-heading.split > p {
  max-width: 620px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
}

.timeline,
.card-grid,
.people-grid,
.news-grid {
  display: grid;
  gap: 18px;
}

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

.timeline article,
.info-card,
.person-card,
.news-card,
.event-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.timeline article,
.person-card,
.news-card,
.signup-form,
.month-calendar,
.event-card {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.timeline article:hover,
.event-card:hover {
  transform: translateY(-2px);
  border-color: rgb(7 95 184 / 28%);
  box-shadow: 0 22px 52px rgb(0 56 117 / 13%);
}

.timeline article,
.info-card {
  padding: 24px;
}

.timeline span,
.card-number,
.event-card span,
.news-card span,
.player-meta span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.card-number {
  margin-bottom: auto;
}

.age-path {
  position: relative;
  display: grid;
  gap: 16px;
}

.age-path::before {
  position: absolute;
  top: 28px;
  bottom: 88px;
  left: 26px;
  width: 2px;
  background: linear-gradient(var(--blue), rgb(7 95 184 / 16));
  content: "";
}

.age-stage {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(240px, 0.64fr);
  gap: 18px;
  align-items: stretch;
}

.age-stage-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: start center;
}

.age-stage-marker span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgb(7 95 184 / 22%);
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.age-stage-content,
.age-stage-teams {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  padding: 22px;
}

.age-stage-content h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.age-stage-venue {
  width: fit-content;
  margin-top: 14px;
  margin-bottom: 0;
  border: 1px solid rgb(7 95 184 / 14%);
  border-radius: 999px;
  background: rgb(7 95 184 / 6%);
  color: var(--blue-dark);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 900;
}

.age-stage-content p:last-child {
  margin-bottom: 0;
}

.age-feature-button {
  width: fit-content;
  margin-top: 14px;
  border: 1px solid rgb(7 95 184 / 18%) !important;
  border-radius: 999px;
  background: white !important;
  color: var(--blue) !important;
  padding: 10px 14px;
}

.age-feature-button:hover {
  background: rgb(7 95 184 / 8%) !important;
}

.age-stage-teams {
  display: grid;
  gap: 10px;
  align-content: center;
}

.age-stage-teams > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.age-stage-teams a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--ink);
  padding: 10px 12px;
  text-decoration: none;
}

.age-stage-teams strong {
  color: var(--blue-dark);
}

.age-stage-teams a span {
  color: var(--muted);
  font-size: 12px;
}

.adult-stage .age-stage-marker span {
  background: var(--blue-dark);
  color: white;
}

.age-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 72px;
}

.age-path-actions .button {
  width: 100%;
}

section.section-shell#groups,
section.section-shell#coaches,
section.section-shell#news,
section.section-shell.contacts-section {
  border-top: 1px solid var(--line);
  background: var(--bg);
  box-shadow: 0 0 0 100vmax var(--bg);
  clip-path: inset(0 -100vmax);
}

section.section-shell#calendar,
section.section-shell.players-section,
section.section-shell.signup-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.approach,
.parents-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.photo-gallery-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.photo-gallery-band.gallery-theme-muted {
  background: var(--bg);
}

.photo-gallery-band.gallery-theme-blue {
  border-color: rgb(255 255 255 / 18%);
  background: var(--blue);
  color: white;
}

.photo-gallery-shell {
  padding-top: 68px;
  padding-bottom: 72px;
}

.photo-gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.photo-gallery-header > div:first-child {
  max-width: 720px;
}

.photo-gallery-header h2,
.photo-gallery-header p {
  margin: 0;
}

.photo-gallery-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
}

.photo-gallery-header p {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.gallery-theme-blue .photo-gallery-header p {
  color: rgb(255 255 255 / 78%);
}

.photo-gallery-controls {
  display: flex;
  gap: 8px;
}

.photo-gallery-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--blue-dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gallery-theme-blue .photo-gallery-controls button {
  border-color: rgb(255 255 255 / 38%);
}

.photo-gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.photo-gallery-track::-webkit-scrollbar {
  display: none;
}

.photo-gallery-item {
  position: relative;
  overflow: hidden;
  min-width: calc((100% - 32px) / 3);
  aspect-ratio: 15 / 13;
  margin: 0;
  border-radius: var(--radius);
  background: var(--paper-soft);
  scroll-snap-align: start;
}

.photo-gallery-item > a {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 16px 14px;
  background: linear-gradient(transparent, rgb(11 35 69 / 88%));
  color: white;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  pointer-events: none;
}

.social-projects-section {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.social-projects-section .section-shell {
  padding-top: 76px;
  padding-bottom: 76px;
}

.social-projects-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.social-projects-heading h2,
.social-projects-heading p {
  margin: 0;
}

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

.social-project-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  min-height: 220px;
  border: 1px solid rgb(7 95 184 / 14%);
  border-top: 3px solid var(--blue);
  border-radius: 8px;
  background: rgb(255 255 255 / 92%);
  color: var(--ink);
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 18px 44px rgb(0 63 131 / 8%);
}

.social-project-card.is-wide {
  grid-column: 1 / -1;
  min-height: 180px;
}

.social-project-card::after {
  position: absolute;
  right: -52px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 24px solid rgb(7 95 184 / 8%);
  border-radius: 50%;
  content: "";
}

.social-project-number {
  width: fit-content;
  border-radius: 999px;
  background: rgb(7 95 184 / 10%);
  color: var(--blue);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.social-project-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--blue-dark);
  font-size: 25px;
  line-height: 1.1;
}

.social-project-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-weight: 750;
}

.social-project-card b {
  position: relative;
  z-index: 1;
  color: var(--blue);
}

.merchandise-section {
  overflow: hidden;
  background: var(--blue);
  color: white;
}

.merchandise-section .section-shell {
  padding-top: 76px;
  padding-bottom: 76px;
}

.merchandise-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.merchandise-heading .eyebrow,
.merchandise-heading h2,
.merchandise-heading p,
.merchandise-note {
  color: white;
}

.merchandise-heading .eyebrow {
  opacity: 0.78;
}

.merchandise-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.merchandise-heading p {
  margin-bottom: 4px;
  opacity: 0.84;
}

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

.merchandise-grid.single-product {
  grid-template-columns: minmax(0, 1fr);
}

.merchandise-card {
  min-width: 0;
  display: grid;
  gap: 14px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 12%);
  box-shadow: 0 24px 50px rgb(0 20 52 / 18%);
  padding: 14px;
}

.merchandise-grid.single-product .merchandise-card {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  border-color: rgb(255 255 255 / 28%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 18%), rgb(255 255 255 / 9%)),
    rgb(255 255 255 / 10%);
  padding: 18px;
}

.merchandise-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 2px);
  background: rgb(255 255 255 / 14%);
}

.merchandise-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: rgb(255 255 255 / 92%);
}

.merchandise-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 18%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 18%), rgb(255 255 255 / 5%)),
    rgb(0 43 97 / 20%);
}

.merchandise-placeholder span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid rgb(255 255 255 / 70%);
  border-radius: 50%;
  color: white;
  font-size: 32px;
  font-weight: 950;
}

.merchandise-card-copy {
  display: grid;
  gap: 8px;
}

.merchandise-grid.single-product .merchandise-card-copy {
  align-content: center;
  gap: 12px;
  padding: 8px 6px;
}

.merchandise-card-kicker {
  width: fit-content;
  border-radius: 999px;
  background: rgb(255 255 255 / 14%);
  color: rgb(255 255 255 / 78%);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.merchandise-card h3 {
  margin-bottom: 0;
  color: white;
  font-size: 22px;
}

.merchandise-card p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  line-height: 1.45;
}

.merchandise-grid.single-product .merchandise-card h3 {
  max-width: 620px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.96;
  text-wrap: balance;
}

.merchandise-grid.single-product .merchandise-card p {
  max-width: 560px;
  color: rgb(255 255 255 / 84%);
  font-size: 17px;
}

.merchandise-price {
  color: white;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.merchandise-grid.single-product .merchandise-price {
  margin-top: 4px;
  font-size: clamp(34px, 4vw, 56px);
}

.merchandise-sizes {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgb(255 255 255 / 14%);
  color: rgb(255 255 255 / 76%);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.merchandise-order-button {
  width: 100%;
}

.merchandise-grid.single-product .merchandise-order-button {
  align-self: end;
  width: min(280px, 100%);
  min-height: 54px;
}

.merchandise-note {
  max-width: 760px;
  margin: 18px 0 0;
  opacity: 0.72;
  font-size: 14px;
}

.approach-grid,
.parents-grid,
.signup-section,
.players-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.parents-faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 44px;
  padding-top: 0;
  padding-bottom: 76px;
}

.parents-faq-heading {
  display: grid;
  align-content: start;
  gap: 10px;
}

.parents-faq-heading h3,
.parents-faq-heading p {
  margin: 0;
}

.parents-faq-heading h3 {
  max-width: 360px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.parents-faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.parents-faq-item {
  border-bottom: 1px solid var(--line);
}

.parents-faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  padding: 20px 46px 20px 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.parents-faq-item summary::-webkit-details-marker {
  display: none;
}

.parents-faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.parents-faq-item[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.parents-faq-item p {
  max-width: 660px;
  margin: -2px 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.contacts-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 44px;
  align-items: start;
}

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

.principles article {
  min-height: 164px;
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: var(--paper-soft);
  padding: 22px;
}

.principles article p {
  margin-bottom: 0;
}

.approach-note {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  border: 1px solid rgb(7 95 184 / 16%);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
}

.approach-note strong {
  color: var(--blue-dark);
  font-size: 15px;
}

.approach-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.calendar-view-switch {
  display: inline-flex;
  justify-self: end;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 4px;
  box-shadow: var(--shadow);
}

.calendar-view-switch button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
}

.calendar-view-switch button.active {
  background: var(--blue-dark);
  color: #fff;
}

.calendar-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.event-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: var(--radius);
  background: var(--blue-dark);
  color: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.event-feature-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border: 46px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
}

.event-feature-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.event-feature-date {
  text-align: right;
}

.event-feature-date strong {
  display: block;
  font-size: 96px;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.event-feature-date span {
  display: block;
  margin-top: 10px;
  color: rgb(255 255 255 / 74%);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-feature-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 660px;
}

.event-feature-content small {
  display: block;
  margin: -4px 0 16px;
  color: rgb(255 255 255 / 72%);
  font-weight: 800;
  text-transform: uppercase;
}

.event-feature-content h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.event-feature-content p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 18px;
  line-height: 1.55;
}

.event-feature-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--event-feature-meta-columns, 3), 1fr);
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 14%);
}

.event-feature-meta div {
  background: rgb(255 255 255 / 8%);
  padding: 16px;
}

.event-feature-meta span {
  display: block;
  margin-bottom: 6px;
  color: rgb(255 255 255 / 58%);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-feature-meta strong {
  font-size: 15px;
}

.event-side-list,
.event-extra-grid {
  display: grid;
  gap: 12px;
}

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

.event-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 16px;
}

.event-card time {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.event-type-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 4px 2px;
}

.event-card-content h3 {
  line-height: 1.16;
}

.event-card-content p {
  color: var(--muted);
  line-height: 1.45;
}

.event-type-pill.training {
  background: #eaf2ff;
  color: #1358d8;
}

.event-type-pill.match {
  background: #fff0d7;
  color: #8b5200;
}

.event-type-pill.tournament {
  background: #e9f9ef;
  color: #11753c;
}

.event-type-pill.meeting {
  background: #f0eaff;
  color: #6544c2;
}

.event-type-pill.club {
  background: #ffe9ef;
  color: #a61d45;
}

.event-type-pill[style] {
  border: 1px solid var(--event-color);
  background: white;
  color: var(--event-color);
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.event-more-button,
.event-collapse-button {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line) !important;
  border-radius: 999px;
  background: var(--paper) !important;
  box-shadow: var(--shadow);
}

.month-calendar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px;
  box-shadow: var(--shadow);
}

.month-calendar-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.month-calendar-header h3 {
  margin: 0;
  text-align: center;
  text-transform: capitalize;
}

.month-nav-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.month-weekdays,
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.month-weekdays {
  gap: 1px;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.month-weekdays span {
  padding: 10px 4px;
  background: var(--paper-soft);
}

.month-grid {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.month-day {
  min-height: 132px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  background: var(--paper);
  padding: 10px;
}

.month-day.empty-day {
  background: #f8fafc;
}

.month-day > strong {
  font-size: 15px;
}

.month-day-events {
  display: grid;
  align-content: start;
  gap: 6px;
}

.month-event {
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  background: var(--blue-soft);
  padding: 6px 7px;
  overflow: hidden;
}

.month-event.training {
  border-color: #1358d8;
  background: #eaf2ff;
}

.month-event.match {
  border-color: #d98200;
  background: #fff0d7;
}

.month-event.tournament {
  border-color: #11753c;
  background: #e9f9ef;
}

.month-event.meeting {
  border-color: #6544c2;
  background: #f0eaff;
}

.month-event.club {
  border-color: #a61d45;
  background: #ffe9ef;
}

.month-event[style] {
  border-left-color: var(--event-color);
  background: white;
}

.month-event span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.month-event p {
  margin: 2px 0 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.month-day-events small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.event-card h3,
.event-card p,
.news-card h3,
.news-card p {
  margin-bottom: 0;
}

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

.person-card {
  padding: 12px;
}

.team-card-photo,
.portrait,
.public-player-photo {
  display: block;
  width: 100%;
}

.team-card-photo {
  object-fit: cover;
}

.portrait,
.player-photo,
.public-player-photo {
  aspect-ratio: 4 / 5;
  background: #eef3fb;
  object-fit: contain;
  object-position: center;
}

.team-card-photo {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  border-radius: calc(var(--radius) - 4px);
}

.person-card h3,
.person-card p,
.person-card small {
  margin-right: 10px;
  margin-left: 10px;
}

.person-card small {
  display: block;
  padding-bottom: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.coach-card-details {
  display: grid;
  gap: 9px;
  margin: 0 10px 14px;
}

.coach-card-details div {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgb(7 95 184 / 10%);
  padding-top: 9px;
}

.coach-card-details dt {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.coach-card-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.portrait {
  margin-bottom: 18px;
}

.players-section {
  align-items: center;
}

.player-photo {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.player-meta {
  padding: 24px;
}

.public-team-rosters {
  grid-column: 1 / -1;
  display: grid;
  gap: 24px;
}

.public-team-roster {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.public-team-roster-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px 58px 18px 22px;
  cursor: pointer;
  list-style: none;
}

.public-team-roster-header::-webkit-details-marker {
  display: none;
}

.public-team-roster-header::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: var(--blue);
}

.public-team-roster-header::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgb(7 95 184 / 22%);
  border-radius: 50%;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  transform: translateY(-50%);
}

.public-team-roster[open] .public-team-roster-header::after {
  content: "−";
}

.public-team-roster-header span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.public-team-roster-header strong {
  display: block;
  grid-column: 1;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.public-team-roster-header em {
  grid-column: 1;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.public-team-roster-header b {
  grid-row: 1 / span 3;
  grid-column: 2;
  border-radius: 999px;
  background: #f0f6ff;
  color: var(--blue-dark);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.public-players-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 18px 18px;
}

.public-player-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.public-player-card > div:last-child {
  padding: 16px;
}

.public-player-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.public-player-card h3,
.public-player-card p {
  margin-bottom: 0;
}

.public-player-photo {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.team-empty-card {
  grid-column: 1 / -1;
  border: 1px dashed rgb(7 95 184 / 26%);
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--muted);
  padding: 18px;
  font-size: 14px;
  font-weight: 800;
}

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

.news-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.news-more-button {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line) !important;
  border-radius: 999px;
  background: var(--paper) !important;
  box-shadow: var(--shadow);
}

.news-collapse-button {
  display: inline-flex;
  margin-top: 14px;
  padding: 0;
  color: var(--blue) !important;
}

.news-card {
  padding: 12px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.news-card h3,
.news-card p,
.news-card span,
.news-card-date {
  margin-right: 10px;
  margin-left: 10px;
}

.news-card span {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
}

.news-card-date {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.news-photo {
  aspect-ratio: 16 / 9;
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
}

body.modal-open {
  overflow: hidden;
}

.news-modal.hidden,
.legal-modal.hidden,
.age-feature-modal.hidden,
.merch-order-modal.hidden,
.cookie-banner.hidden {
  display: none;
}

.news-modal,
.legal-modal,
.age-feature-modal,
.merch-order-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.news-modal-backdrop,
.age-feature-backdrop,
.merch-order-backdrop,
.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(9 23 42 / 72%);
}

.news-modal-card,
.legal-modal-card,
.age-feature-card,
.merch-order-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 18px 28px;
  box-shadow: 0 30px 90px rgb(9 23 42 / 36%);
}

.age-feature-card {
  width: min(980px, 100%);
  padding: 34px;
  border-top: 5px solid var(--blue);
}

.merch-order-card {
  width: min(720px, 100%);
  padding: 28px;
  border-top: 5px solid var(--blue);
}

.merch-order-card > p:not(.eyebrow) {
  margin-bottom: 22px;
}

.merch-order-selected-product {
  margin: 2px 0 14px;
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 950;
}

.merch-order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.merch-order-form label {
  display: grid;
  gap: 7px;
  color: #26394c;
  font-size: 13px;
  font-weight: 900;
}

.merch-order-form .full {
  grid-column: 1 / -1;
}

.merch-order-form input,
.merch-order-form select,
.merch-order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.merch-order-form input:focus,
.merch-order-form select:focus,
.merch-order-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(7 95 184 / 12%);
}

.merch-order-form input[readonly] {
  background: #edf5ff;
  color: var(--blue-dark);
  font-weight: 900;
}

.age-feature-lead {
  max-width: 720px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.age-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.age-feature-grid section {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 20px;
}

.age-feature-grid section > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgb(7 95 184 / 10%);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.age-feature-grid h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 20px;
}

.age-feature-grid div {
  display: grid;
  gap: 10px;
  color: #334960;
  line-height: 1.55;
}

.age-feature-grid p,
.age-feature-grid ul,
.age-feature-grid ol {
  margin: 0;
}

.age-feature-grid ul,
.age-feature-grid ol {
  padding-left: 20px;
}

.age-feature-actions {
  margin-top: 24px;
}

.news-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--blue-dark);
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
}

#news-modal-image img,
.news-modal-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
}

#news-modal-category {
  display: block;
  margin-top: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

#news-modal-title {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 44px);
}

.news-modal-date {
  color: #65758a;
}

.news-modal-text {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  color: #24384f;
  font-size: 17px;
  line-height: 1.62;
}

.legal-modal-text {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: #24384f;
  font-size: 16px;
  line-height: 1.65;
}

.legal-modal-text h3,
.legal-modal-text h4,
.legal-modal-text h5,
.legal-modal-text p,
.legal-modal-text ul,
.legal-modal-text ol {
  margin: 0;
}

.legal-modal-text h3,
.legal-modal-text h4,
.legal-modal-text h5 {
  color: var(--ink);
  line-height: 1.2;
}

.legal-modal-text ul,
.legal-modal-text ol {
  padding-left: 22px;
}

.legal-modal-text a {
  color: var(--blue);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #30465d;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.signup-section {
  align-items: stretch;
}

.signup-copy {
  position: sticky;
  top: 110px;
}

.signup-copy h2 {
  text-wrap: balance;
}

.signup-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  padding: 24px;
}

.signup-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  content: "";
}

.signup-form-intro {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.signup-form-intro strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.signup-form-intro p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: #26394c;
  font-size: 13px;
  font-weight: 900;
}

.signup-form .full {
  grid-column: 1 / -1;
}

.signup-form input,
.signup-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.signup-form input:focus,
.signup-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(7 95 184 / 12%);
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px !important;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.inline-doc-link {
  border: 0;
  background: transparent;
  color: var(--blue);
  padding: 0;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 92px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 96%);
  box-shadow: var(--shadow);
  padding: 14px;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner .button {
  min-height: 42px;
  padding: 0 18px;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  width: fit-content;
  border-bottom: 1px solid var(--line);
  color: #26394c;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.contact-addresses {
  display: grid;
  gap: 10px;
}

.contact-addresses a {
  display: grid;
  gap: 3px;
  width: fit-content;
  border-bottom: 1px solid var(--line);
  color: #26394c;
  text-decoration: none;
}

.contact-addresses strong {
  color: var(--blue-dark);
  font-size: 14px;
  line-height: 1.25;
}

.contact-addresses span {
  border: 0;
  font-size: 18px;
}

.map-frame {
  overflow: hidden;
  min-height: 480px;
  border: 1px solid #c9ddf3;
  border-radius: var(--radius);
  background: #eef3fb;
}

.map-frame iframe,
.map-api-root {
  display: block;
  width: 100%;
  min-height: 480px;
  border: 0;
}

.site-footer {
  background: #071a2d;
  color: white;
  padding: 54px max(24px, calc((100vw - 1180px) / 2)) 28px;
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: rgb(255 255 255 / 72%);
}

.site-footer .brand strong,
.site-footer .brand small {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 0.55fr 0.8fr 0.55fr;
  gap: 42px;
  align-items: start;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.footer-social-links a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.site-footer a {
  text-decoration: none;
}

.copyright {
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 13px;
}

.offer-page {
  min-height: 100vh;
  background: #f3f7fb;
}

.offer-main {
  width: min(920px, calc(100% - 40px));
  min-height: calc(100vh - 260px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.offer-document,
.offer-unavailable {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid #d4e1ef;
  border-radius: 8px;
  background: white;
}

.offer-kicker {
  margin: 0 0 12px;
  color: #075fb8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-document h1,
.offer-unavailable h1 {
  margin: 0 0 36px;
}

.offer-text {
  max-height: none;
  overflow: visible;
}

.offer-table-wrap {
  max-width: 100%;
  margin: 24px 0 36px;
  overflow-x: auto;
  border: 1px solid #d4e1ef;
  border-radius: 6px;
}

.offer-table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.4;
}

.offer-table-wrap th,
.offer-table-wrap td {
  padding: 12px 14px;
  border-right: 1px solid #d4e1ef;
  border-bottom: 1px solid #d4e1ef;
  text-align: left;
  vertical-align: top;
}

.offer-table-wrap th {
  background: #edf4fb;
  color: #0b2345;
  font-weight: 800;
}

.offer-table-wrap tr:last-child td {
  border-bottom: 0;
}

.offer-table-wrap th:last-child,
.offer-table-wrap td:last-child {
  border-right: 0;
}

.offer-footer-doc-link {
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 72%);
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.offer-footer-doc-link:hover {
  color: white;
}

@media (max-width: 640px) {
  .offer-main {
    width: min(100% - 24px, 920px);
    padding: 24px 0 56px;
  }

}

@media (max-width: 1000px) {
  main[id],
  section[id] {
    scroll-margin-top: 84px;
  }

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
  }

  .recruitment-banner-inner {
    gap: 14px;
  }

  .recruitment-banner-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .recruitment-banner-copy strong {
    flex: initial;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 112px;
  }

  .site-nav {
    position: fixed;
    top: 87px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    padding: 16px;
  }

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

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.2;
  }

  .site-nav .mobile-account-link,
  .site-nav .mobile-social-link {
    display: flex !important;
    border-top: 1px solid var(--line);
    border-radius: 0;
    color: var(--blue);
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 30;
    right: 20px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 20px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--blue);
    color: white;
    box-shadow: 0 18px 34px rgb(0 63 131 / 24%);
    padding: 0 22px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
  }

  .hero,
  .section-heading.split,
  .approach-grid,
  .parents-grid,
  .parents-faq-wrap,
  .signup-section,
  .contacts-section,
  .players-section {
    grid-template-columns: 1fr;
  }

  .merchandise-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .merchandise-grid.single-product .merchandise-card {
    grid-template-columns: 1fr;
  }

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

  .social-projects-grid {
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-proof,
  .signup-assurance {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dynamo-identity-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .dynamo-identity-years {
    grid-column: 2;
    font-size: 26px;
  }

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

  .name-history-timeline::before {
    display: none;
  }

  .name-history-note {
    grid-template-columns: 1fr;
  }

  .placeholder-main {
    min-height: 380px;
  }

  .facts-grid,
  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline,
  .news-grid,
  .calendar-showcase,
  .event-extra-grid,
  .public-players-grid {
    grid-template-columns: 1fr;
  }

  .age-stage {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .age-stage-teams {
    grid-column: 2;
  }

  .age-path-actions {
    padding-left: 0;
  }

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

  .signup-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .photo-gallery-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .photo-gallery-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
  }

  .photo-gallery-header h2 {
    font-size: 32px;
  }

  .photo-gallery-header p {
    font-size: 15px;
  }

  .photo-gallery-controls {
    align-self: start;
  }

  .photo-gallery-controls button {
    width: 42px;
    height: 42px;
  }

  .photo-gallery-controls button:first-child {
    display: none;
  }

  .photo-gallery-item {
    min-width: min(82vw, 390px);
  }

  .site-header {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 53px;
    height: 53px;
    min-width: 53px;
    flex-basis: 53px;
    font-size: 26px;
  }

  .brand strong {
    font-size: 16px;
    line-height: 1;
  }

  .brand small {
    font-size: 11px;
    line-height: 1.1;
  }

  .menu-toggle {
    min-width: 112px;
    min-height: 50px;
    padding: 0 22px;
    font-size: 14px;
  }

  .mobile-sticky-cta {
    right: 14px;
    left: 14px;
    min-height: 56px;
    padding: 0 18px;
    font-size: 15px;
    line-height: 1;
  }

  .recruitment-banner::before {
    left: 0;
    width: 4px;
  }

  .recruitment-banner-inner {
    width: min(100% - 32px, 1180px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 16px 0 18px;
  }

  .recruitment-banner-kicker {
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  .recruitment-banner-copy {
    display: grid;
    gap: 5px;
  }

  .recruitment-banner-copy strong {
    font-size: 20px;
  }

  .recruitment-banner-copy span {
    width: auto;
    font-size: 13px;
  }

  .recruitment-banner-button {
    width: 100%;
    min-height: 48px;
    margin-top: 3px;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
    padding: 52px 0;
  }

  h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .site-mood-badge {
    margin-bottom: 12px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero-proof,
  .signup-assurance {
    grid-template-columns: 1fr;
  }

  .dynamo-identity-inner {
    width: min(100% - 28px, 1180px);
    gap: 12px;
    padding: 18px 0;
  }

  .dynamo-identity-mark {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .dynamo-identity-copy strong {
    font-size: 15px;
  }

  .dynamo-identity-copy p {
    font-size: 13px;
  }

  .dynamo-identity-years {
    font-size: 23px;
  }

  .name-history-section {
    padding-top: 52px;
  }

  .name-history-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .hero-proof span,
  .signup-assurance span {
    align-items: flex-start;
    border-radius: var(--radius);
    padding: 10px 12px;
    line-height: 1.3;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }

  .age-path-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .button.primary {
    display: none;
  }

  .placeholder-main {
    min-height: 300px;
    padding: 18px;
  }

  .placeholder-main strong {
    font-size: 30px;
  }

  .hero-slide-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .hero-slide-caption b {
    font-size: 20px;
  }

  .hero-carousel-dots {
    top: 16px;
    right: 16px;
  }

  .facts-grid,
  .card-grid.four,
  .principles,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .merchandise-section .section-shell {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .merchandise-heading {
    gap: 14px;
    margin-bottom: 18px;
  }

  .merchandise-heading h2 {
    font-size: 30px;
  }

  .merchandise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .social-projects-grid {
    grid-template-columns: 1fr;
  }

  .social-project-card,
  .social-project-card.is-wide {
    grid-column: auto;
    min-height: auto;
    padding: 18px;
  }

  .social-project-card h3 {
    font-size: 21px;
  }

  .merchandise-card {
    gap: 10px;
    padding: 8px;
    box-shadow: none;
  }

  .merchandise-card h3 {
    min-height: 38px;
    font-size: 15px;
    line-height: 1.25;
  }

  .merchandise-grid.single-product .merchandise-card {
    gap: 14px;
    padding: 12px;
  }

  .merchandise-grid.single-product .merchandise-card h3 {
    min-height: 0;
    font-size: 28px;
    line-height: 1;
  }

  .merchandise-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .merchandise-grid.single-product .merchandise-card p {
    display: block;
    overflow: visible;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }

  .merchandise-price {
    font-size: 21px;
  }

  .merchandise-grid.single-product .merchandise-price {
    font-size: 32px;
  }

  .merchandise-sizes {
    padding: 6px 8px;
    font-size: 10px;
  }

  .merchandise-order-button {
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
  }

  .merchandise-grid.single-product .merchandise-order-button {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
  }

  .merchandise-note {
    font-size: 12px;
  }

  .merch-order-modal {
    padding: 14px;
  }

  .merch-order-card {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 24px 16px;
  }

  .merch-order-form {
    grid-template-columns: 1fr;
  }

  .facts-grid article {
    min-height: 110px;
    gap: 8px;
    padding: 16px;
  }

  .facts-grid small {
    font-size: 11px;
  }

  .facts-grid strong {
    font-size: 52px;
  }

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

  .event-card time {
    width: 112px;
  }

  .event-feature-card {
    min-height: 520px;
  }

  .event-feature-top {
    display: grid;
  }

  .event-feature-date {
    text-align: left;
  }

  .event-feature-meta {
    grid-template-columns: 1fr;
  }

  .age-path::before {
    bottom: 112px;
  }

  .age-stage {
    gap: 10px;
  }

  .age-stage-content,
  .age-stage-teams {
    padding: 16px;
  }

  .age-stage-content h3 {
    font-size: 23px;
  }

  .age-path-actions {
    display: grid;
    padding-left: 0;
  }

  .map-frame,
  .map-frame iframe,
  .map-api-root {
    min-height: 380px;
  }

  .people-grid,
  .public-players-grid {
    gap: 8px;
  }

  .person-card,
  .public-player-card {
    box-shadow: none;
  }

  .person-card {
    padding: 6px;
  }

  .portrait,
  .public-player-photo {
    margin-bottom: 8px;
  }

  .person-card h3,
  .public-player-card h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 34px;
    margin-right: 4px;
    margin-left: 4px;
    font-size: 14px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .person-card p,
  .person-card small,
  .public-player-card p,
  .public-player-card span {
    display: none;
  }

  .public-player-card > div:last-child {
    padding: 8px 6px 10px;
  }

  .public-team-rosters {
    gap: 18px;
  }

  .public-team-roster-header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px 52px 16px 18px;
  }

  .public-team-roster-header strong {
    font-size: 20px;
  }

  .public-team-roster-header b {
    grid-row: auto;
    grid-column: 1;
    justify-self: start;
    white-space: normal;
  }

  .public-players-grid {
    padding: 0 10px 10px;
  }

  .age-feature-modal {
    padding: 14px;
  }

  .age-feature-card {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 24px 16px;
  }

  .age-feature-grid {
    grid-template-columns: 1fr;
  }

  .calendar-view-switch {
    justify-self: start;
  }

  .month-weekdays {
    display: none;
  }

  .month-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .month-day.empty-day {
    display: none;
  }

  .month-day {
    min-height: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

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

  .cookie-banner {
    bottom: 86px;
    grid-template-columns: 1fr;
  }

  .cookie-banner .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.site-mood-newyear.site-mood-motion .site-mood-decoration i,
  body.site-mood-season.site-mood-motion .site-mood-decoration::after {
    animation: none;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 8px;
    padding-inline: 12px;
  }

  .brand {
    gap: 8px;
  }

  .mobile-sticky-cta {
    right: 12px;
    left: 12px;
  }
}
