:root {
  --navy: #0b1d63;
  --blue: #123d9b;
  --bright-blue: #17a7d8;
  --yellow: #ffd12a;
  --gold: #f5a51b;
  --ink: #071126;
  --muted: #516078;
  --line: #d9e2ef;
  --white: #ffffff;
  --soft: #f4f8fc;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(7, 17, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Arial", sans-serif;
  background: var(--white);
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 16px 7vw;
  color: var(--white);
  background: rgba(11, 29, 99, 0.86);
  border-bottom: 4px solid var(--yellow);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(11, 29, 99, 0.96);
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #72d8f1;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  background: var(--navy);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 17, 38, 0.86), rgba(18, 61, 155, 0.58) 48%, rgba(7, 17, 38, 0.42)),
    radial-gradient(circle at 80% 20%, rgba(255, 209, 42, 0.22), transparent 34%);
}

.hero::after {
  content: "APL";
  position: absolute;
  right: -52px;
  bottom: 118px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.07);
  font-size: 11rem;
  font-weight: 900;
}

.hero-content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto 166px;
  padding-top: 130px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 4.18rem;
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 2.9rem;
  line-height: 1.04;
  font-weight: 950;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: #edf8ff;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 480ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), var(--gold));
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

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

.glance-strip {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: min(1080px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transform: translateX(-50%);
}

.glance-strip article {
  min-height: 108px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(11, 29, 99, 0.78);
  backdrop-filter: blur(12px);
}

.glance-strip strong {
  display: block;
  color: var(--yellow);
  font-size: 2.45rem;
  line-height: 1;
}

.glance-strip span {
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band {
  padding: 72px 0;
  background: linear-gradient(135deg, #ecfbff, #ffffff);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.intro-grid p:last-child {
  margin: 0;
  color: #24314a;
  font-size: 1.08rem;
}

.section-white {
  padding: 96px 0;
  background: var(--white);
}

.section-blue {
  background:
    linear-gradient(135deg, var(--bright-blue), var(--navy) 70%),
    var(--navy);
  color: var(--white);
}

.section-blue h2,
.section-blue h3,
.section-blue p {
  color: var(--white);
}

.section-yellow {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(255, 209, 42, 0.95), rgba(245, 165, 27, 0.9)),
    var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 1fr 0.95fr;
}

.content-stack > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-blue .content-stack > p {
  color: #d8f3ff;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy);
  aspect-ratio: 4 / 3;
}

.image-panel-tall {
  aspect-ratio: 4 / 5;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video-hero {
  min-height: 100vh;
}

.sound-toggle {
  width: auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 96px;
}

.page-hero::after {
  content: "APL";
  position: absolute;
  right: -36px;
  bottom: -38px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 12rem;
  font-weight: 950;
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
}

.compact-hero {
  padding-bottom: 60px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

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

.feature-card,
.format-card,
.city-card,
.news-card,
.contact-form {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 17, 38, 0.1);
}

.feature-card,
.format-card,
.city-card,
.news-card,
.news-feature,
.players article,
.process article,
.opportunity-list article {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.format-card:hover,
.city-card:hover,
.news-card:hover,
.news-feature:hover,
.players article:hover,
.process article:hover,
.opportunity-list article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 22px;
  border: 1px solid var(--line);
}

.feature-card p,
.format-card p,
.news-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--bright-blue);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.consortium {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.consortium::before,
.site-footer::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: 3vw;
  bottom: -160px;
  border: 38px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.tick-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  padding: 15px 18px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #f5fbff;
  font-weight: 800;
}

.league-section {
  background:
    linear-gradient(180deg, var(--white), #f2fbff),
    var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.league-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.format-card,
.city-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
}

.format-card {
  background:
    linear-gradient(rgba(11, 29, 99, 0.86), rgba(11, 29, 99, 0.78)),
    url("assets/images/city-franchises.jpg") center / cover;
}

.format-card h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.format-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.format-steps span,
.cities span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(23, 167, 216, 0.92);
  font-weight: 900;
  text-transform: uppercase;
}

.city-card {
  background: var(--navy);
}

.city-card h3,
.city-card p {
  color: var(--white);
}

.cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.cities span {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--bright-blue);
}

.players {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.players article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--bright-blue));
}

.players span {
  font-weight: 950;
  text-transform: uppercase;
}

.players small {
  color: #dcf7ff;
  font-weight: 700;
}

.opportunity-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.opportunity-list article {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.opportunity-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.04rem;
  text-transform: uppercase;
}

.opportunity-list span {
  color: #27364f;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.process article {
  min-height: 150px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.process span {
  color: var(--yellow);
  font-weight: 950;
  font-size: 2rem;
}

.process h3 {
  color: var(--white);
}

.news-section {
  padding: 96px 0;
}

.post-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 28px;
}

.filter-select-label {
  display: none;
  margin: -12px 0 24px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.filter-select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
}

.filter-pill {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-pill:hover,
.filter-pill.is-active {
  color: var(--navy);
  background: var(--yellow);
}

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

.news-feature {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.news-feature img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.news-feature h3,
.news-card h3 {
  color: var(--navy);
}

.news-feature p {
  color: var(--muted);
}

.news-card {
  overflow: hidden;
}

.news-card img {
  height: 220px;
}

.news-card div {
  padding: 20px;
}

.news-card h3 {
  margin: 0;
}

.news-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.read-more {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.read-more:hover,
.read-more:focus-visible {
  color: var(--bright-blue);
}

.partners-section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 17, 38, 0.96), rgba(18, 61, 155, 0.94)),
    var(--navy);
}

.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.partners-inner {
  position: relative;
  z-index: 1;
}

.logo-grid-panel {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  animation: partnerPanelIn 900ms ease forwards;
}

.logo-grid-panel img {
  width: min(980px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.28));
  transition: transform 260ms ease, filter 260ms ease;
}

.logo-grid-panel:hover img {
  transform: scale(1.025);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.34));
}

@keyframes partnerPanelIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.post-detail-card {
  max-width: 920px;
  margin: 0 auto;
}

.post-detail-card h1 {
  color: var(--navy);
  font-size: 3.4rem;
}

.post-detail-card .hero-copy {
  color: var(--muted);
}

.post-detail-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin: 28px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.post-body {
  color: #24314a;
  font-size: 1.08rem;
}

.contact-section {
  background:
    linear-gradient(90deg, var(--white), rgba(236, 251, 255, 0.8)),
    var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-details p {
  margin: 0;
  padding: 15px 17px;
  border-left: 4px solid var(--bright-blue);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-details a {
  color: var(--blue);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd7e7;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 28px;
  color: var(--white);
  background: var(--navy);
}

.admin-entry {
  position: relative;
  z-index: 2;
  display: block;
  margin: 26px auto 0;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-entry:hover,
.admin-entry:focus-visible {
  background: var(--yellow);
  color: var(--navy);
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: 24px;
  background: rgba(7, 17, 38, 0.78);
  backdrop-filter: blur(10px);
  overflow: auto;
}

.admin-modal.is-open {
  display: grid;
  place-items: start center;
}

.admin-panel {
  position: relative;
  width: min(1080px, 100%);
  margin: 40px auto;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.admin-note {
  color: var(--muted);
}

.admin-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.admin-tab {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--soft);
  font-weight: 900;
  cursor: pointer;
}

.admin-tab.is-active {
  color: var(--white);
  background: var(--navy);
}

.admin-section {
  display: none;
}

.admin-section.is-active {
  display: block;
}

.admin-form {
  display: grid;
  gap: 14px;
}

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

.admin-form label,
.backup-import {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.backup-box {
  width: 100%;
  border: 1px solid #cbd7e7;
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: var(--white);
}

.admin-form .wide {
  grid-column: 1 / -1;
}

.dynamic-text-fields,
.dynamic-media-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dynamic-text-fields label,
.dynamic-media-fields label {
  min-width: 0;
}

.admin-field-heading {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 1rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.form-status.is-error {
  color: #b00020;
}

.admin-post-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.admin-post-list article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.admin-post-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-post-list button {
  min-height: 34px;
  margin-left: 6px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.backup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.backup-import {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--soft);
  cursor: pointer;
}

.backup-import input {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  gap: 42px;
  margin: 0 auto;
}

.site-footer img {
  width: 230px;
  margin-bottom: 18px;
}

.site-footer p {
  color: #d9eff9;
}

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

.site-footer nav a {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact p {
  margin-bottom: 12px;
}

.copyright {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 40px auto 0;
  color: var(--yellow);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .site-header {
    padding: 14px 28px;
  }

  .brand img {
    width: 160px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.8rem;
  }

  h1 {
    font-size: 3.18rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .split,
  .split-reverse,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 960px;
  }

  .hero-content {
    margin-bottom: 390px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .post-filters {
    display: none;
  }

  .filter-select-label {
    display: grid;
  }

  .dynamic-text-fields,
  .dynamic-media-fields {
    grid-template-columns: 1fr;
  }

  .glance-strip {
    grid-template-columns: 1fr;
  }

  .glance-strip article {
    min-height: 92px;
  }

  .feature-grid.two,
  .league-grid,
  .process,
  .news-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .news-feature {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .news-feature img {
    height: 260px;
  }

  .section-white,
  .section-yellow,
  .consortium,
  .news-section {
    padding: 70px 0;
  }

  .admin-panel {
    padding: 24px 16px;
    margin: 16px auto;
  }

  .admin-topline,
  .admin-post-list article {
    display: grid;
  }

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

@media (max-width: 460px) {
  .section-inner,
  .hero-content,
  .footer-inner,
  .copyright {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 138px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
  }
  

  .format-steps,
  .cities {
    grid-template-columns: 1fr;
  }
  
    .white-text {
  color: #ffffff !important;
}
}
