/* Delhi Redz feature layer: shared additions for the approved spec. */
:root {
  --feature-red: var(--red, #ac0034);
  --feature-red-bright: var(--red-bright, #e11d30);
  --feature-gold: var(--gold, #b6985a);
  --feature-black: var(--black, #212121);
  --feature-black-2: var(--black-2, #181818);
  --feature-black-3: var(--black-3, #2a2a2a);
  --feature-white: var(--white, #ffffff);
  --feature-offwhite: var(--offwhite, var(--off-white, #fdf6ed));
  --feature-grey: var(--grey, #cacaca);
  --feature-display: var(--font-display, 'Bebas Neue', sans-serif);
  --feature-body: var(--font-body, 'DM Sans', sans-serif);
  --feature-label: var(--font-label, 'Archivo', sans-serif);
  --feature-ease: var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.match-row {
  transition: background 0.35s var(--feature-ease), border-left-color 0.35s var(--feature-ease);
}

.match-row.is-vs:hover,
.match-row.is-score:hover {
  background: rgba(182, 152, 90, 0.07);
}

.match-row.is-live {
  background: rgba(172, 0, 52, 0.06);
  border-left: 2px solid var(--feature-red);
}

.match-row .drawer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s var(--feature-ease), opacity 0.35s, margin-top 0.4s var(--feature-ease);
}

.match-row:hover .drawer,
.match-row.is-live .drawer {
  max-height: 60px;
  opacity: 1;
  margin-top: 16px;
}

.live-label {
  flex-direction: row;
  justify-content: center;
  color: var(--feature-red);
  font-size: 9px;
  letter-spacing: 2px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--feature-red-bright);
  box-shadow: 0 0 0 rgba(225, 29, 48, 0.5);
  animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 29, 48, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(225, 29, 48, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 48, 0);
  }
}

.match-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 12px 22px;
  font-family: var(--feature-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--feature-white);
}

.match-action--live {
  background: var(--feature-red);
  border: 1.5px solid var(--feature-red);
}

.match-action--highlights {
  border: 1.5px solid rgba(182, 152, 90, 0.5);
  color: var(--feature-gold);
}

.match-action--tickets {
  border: 1.5px solid var(--feature-red);
  color: var(--feature-white);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  flex: 0 0 auto;
}

.team-score-mobile {
  display: none;
  margin-left: auto;
  font-family: var(--feature-display);
  font-size: 20px;
  color: var(--feature-gold);
}

.feature-section {
  position: relative;
  padding: 120px 60px;
  overflow: hidden;
}

.section-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(172, 0, 52, 0.3), transparent);
}

.feature-section--dark {
  background: var(--feature-black);
}

.feature-section--alt {
  background: var(--feature-black-2);
}

.feature-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 60px;
}

.feature-header .eyebrow {
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--feature-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

#stats.league-stats {
  min-height: 0;
  display: block;
  align-items: initial;
  padding: 0;
  background: var(--feature-black);
}

.league-stats__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.league-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--feature-black-2);
  color: var(--feature-offwhite);
}

.league-proof-cell {
  padding: 56px 46px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(182, 152, 90, 0.35);
  border-bottom: 1px solid rgba(182, 152, 90, 0.35);
}

.league-proof-cell:nth-child(3n) {
  border-right: 0;
}

.league-proof-cell:nth-child(n+4) {
  border-bottom: 0;
}

.league-number {
  font-family: var(--feature-display);
  font-size: clamp(64px, 7vw, 78px);
  line-height: 0.85;
  color: var(--feature-offwhite);
  text-transform: uppercase;
}

.league-number small {
  font-size: 0.42em;
  vertical-align: baseline;
}

.league-label {
  margin-top: 16px;
  max-width: 190px;
  font-family: var(--feature-body);
  font-size: 15px;
  line-height: 1.4;
  color: rgba(253, 246, 237, 0.66);
}

.league-statement {
  background: var(--feature-red);
  color: var(--feature-offwhite);
  padding: 62px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.league-statement__eyebrow {
  font-family: var(--feature-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.league-statement__headline {
  font-family: var(--feature-display);
  font-size: clamp(74px, 9vw, 132px);
  line-height: 0.86;
  text-transform: uppercase;
}

.ticket-grid,
.stories-grid,
.highlights-grid,
.store-grid {
  display: grid;
  gap: 2px;
}

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

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

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

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

.feature-empty {
  font-family: var(--feature-body);
  color: rgba(255, 255, 255, 0.55);
}

.ticket-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px;
  transition: border-color 0.3s var(--feature-ease);
}

.ticket-card:hover {
  border-color: rgba(172, 0, 52, 0.35);
}

.ticket-meta,
.highlight-meta {
  font-family: var(--feature-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--feature-gold);
}

.ticket-teams {
  margin: 24px 0;
}

.ticket-team {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--feature-body);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--feature-offwhite);
}

.ticket-team img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--feature-black-3);
}

.ticket-vs {
  margin: 10px 0 10px 44px;
  font-family: var(--feature-display);
  font-size: 13px;
  color: #666;
  text-transform: lowercase;
}

.ticket-buy {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--feature-red);
  color: var(--feature-white);
  font-family: var(--feature-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.story-card,
.highlight-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: inherit;
  text-decoration: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.3s var(--feature-ease);
  appearance: none;
}

.story-card:hover,
.highlight-card:hover {
  border-color: rgba(172, 0, 52, 0.4);
}

.story-card::after,
.highlight-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--feature-red);
  box-shadow: 0 0 12px var(--feature-red-bright);
  transition: width 0.5s var(--feature-ease);
}

.story-card:hover::after,
.highlight-card:hover::after {
  width: 100%;
}

.story-image,
.highlight-image {
  position: relative;
  height: 220px;
  background: var(--feature-black-3);
  overflow: hidden;
}

.stories-page .story-image {
  height: 220px;
}

.highlight-image {
  height: 250px;
}

.story-image img,
.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s var(--feature-ease);
}

.story-card:hover img,
.highlight-card:hover img {
  transform: scale(1.06);
}

.source-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  background: var(--feature-gold);
  color: var(--feature-black-2);
  font-family: var(--feature-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.source-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.image-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border: 1px solid rgba(253, 246, 237, 0.45);
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-play::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--feature-offwhite);
  margin-left: 4px;
}

.story-body,
.highlight-body {
  padding: 20px;
  min-height: 150px;
}

.story-title,
.highlight-title {
  font-family: var(--feature-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--feature-white);
}

.story-copy,
.highlight-copy {
  margin-top: 12px;
  font-family: var(--feature-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.highlight-meta {
  margin-top: 12px;
}

.store-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--feature-offwhite);
  transition: border-color 0.3s var(--feature-ease), transform 0.3s var(--feature-ease);
}

.store-card:hover {
  border-color: rgba(182, 152, 90, 0.38);
  transform: translateY(-2px);
}

.store-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--feature-red);
  box-shadow: 0 0 12px var(--feature-red-bright);
  transition: width 0.5s var(--feature-ease);
}

.store-card:hover::after {
  width: 100%;
}

.store-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 22px 20px;
  overflow: hidden;
  background: #151515;
}

.store-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 9px;
  background: var(--feature-gold);
  color: var(--feature-black-2);
  font-family: var(--feature-label);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.store-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.4));
  transform: translateY(0) scale(1);
  transition: transform 0.45s var(--feature-ease), filter 0.45s var(--feature-ease);
}

.store-card__image--portrait {
  max-height: 440px;
}

.store-card:hover .store-card__image {
  transform: translateY(-4px) scale(1.025);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
}

.store-card__body {
  padding: 22px;
}

.store-card__type {
  margin-top: 10px;
  font-family: var(--feature-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 246, 237, 0.62);
}

.store-card__title {
  font-family: var(--feature-display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.stories-page {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px 80px;
  background: var(--feature-black);
}

.stories-page__inner {
  max-width: none;
  margin: 0 auto;
}

.stories-page__header {
  margin-bottom: 60px;
}

.stories-page .story-body {
  min-height: 132px;
}

.stories-page .story-title {
  font-size: clamp(20px, 1.7vw, 24px);
}

.video-overlay[hidden] {
  display: none;
}

.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.video-overlay__panel {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 48px));
  background: #0f0f0f;
  border: 1px solid rgba(182, 152, 90, 0.18);
  color: var(--feature-offwhite);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.video-overlay__top {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
}

.video-overlay__eyebrow {
  font-family: var(--feature-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--feature-gold);
}

.video-overlay__eyebrow.is-live {
  color: var(--feature-red);
}

.video-overlay__title {
  margin-top: 6px;
  font-family: var(--feature-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
}

.video-overlay__close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(253, 246, 237, 0.35);
  background: transparent;
  color: var(--feature-offwhite);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: border-color 0.3s, color 0.3s;
}

.video-overlay__close:hover {
  color: var(--feature-red-bright);
  border-color: var(--feature-red-bright);
}

.video-overlay__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-overlay__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-overlay__meta {
  padding: 14px 20px 18px;
  font-family: var(--feature-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(253, 246, 237, 0.62);
}

body.video-overlay-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .league-stats__inner {
    grid-template-columns: 1fr;
  }

  .league-statement {
    order: -1;
  }

  .league-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .league-proof-cell:nth-child(3n) {
    border-right: 1px solid rgba(182, 152, 90, 0.35);
  }

  .league-proof-cell:nth-child(2n) {
    border-right: 0;
  }

  .league-proof-cell:nth-child(n+4) {
    border-bottom: 1px solid rgba(182, 152, 90, 0.35);
  }

  .league-proof-cell:nth-child(n+5) {
    border-bottom: 0;
  }

  .ticket-grid,
  .highlights-grid,
  .stories-grid,
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .feature-section,
  .stories-page {
    padding: 0 20px 56px;
  }

  .feature-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .match-team.away {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .match-row {
    padding: 22px 0;
  }

  .match-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 14px;
  }

  .match-label {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }

  .match-teams {
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
  }

  .match-center {
    display: none;
  }

  .match-team,
  .match-team.home,
  .match-team.away {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }

  .match-team.home .team-name {
    order: 0;
  }

  .team-logo {
    width: 28px;
    height: 28px;
  }

  .team-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
  }

  .team-score-mobile {
    display: block;
  }

  .match-row .drawer,
  .match-row:hover .drawer,
  .match-row.is-live .drawer,
  .match-row.is-vs .drawer {
    grid-column: 2;
    grid-row: 2;
    max-height: none;
    opacity: 1;
    margin-top: 0;
    overflow: visible;
  }

  .match-action {
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .match-action--tickets {
    width: auto;
    min-width: 82px;
    padding: 0 14px;
  }

  .match-action--live .match-action-label,
  .match-action--highlights .match-action-label {
    display: none;
  }

  .league-proof-grid,
  .ticket-grid,
  .stories-grid,
  .highlights-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .league-statement {
    padding: 36px 24px;
  }

  .league-statement__headline {
    font-size: clamp(58px, 18vw, 88px);
  }

  .league-proof-cell {
    min-height: auto;
    padding: 32px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(182, 152, 90, 0.35);
  }

  .league-proof-cell:nth-child(n) {
    border-right: 0;
  }

  .league-proof-cell:last-child {
    border-bottom: 0;
  }

  .video-overlay {
    padding: 12px;
  }

  .video-overlay__panel {
    width: calc(100vw - 24px);
  }

  .video-overlay__top {
    grid-template-columns: 1fr 40px;
    padding: 16px;
  }
}

/* ============================================================
   SITE-WIDE CONSISTENCY PASS
   ============================================================ */
:root {
  --red: #ac0034;
  --red-bright: #e11d30;
  --red-dark: #8a0029;
  --red-glow: rgba(172, 0, 52, 0.4);
  --gold: #b6985a;
  --black: #212121;
  --black-2: #181818;
  --black-3: #2a2a2a;
  --white: #ffffff;
  --offwhite: #fdf6ed;
  --off-white: #fdf6ed;
  --grey: #cacaca;
  --font-display: 'Bebas Neue', sans-serif;
  --font-label: 'Archivo', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html,
body {
  background: var(--black) !important;
  color: var(--offwhite) !important;
}

body {
  font-family: var(--font-body) !important;
  overflow-x: hidden;
}

#nav {
  gap: 28px;
  padding: 18px 40px;
  background: rgba(24, 24, 24, 0.9);
  border-bottom-color: rgba(182, 152, 90, 0.14);
}

#nav.scrolled {
  padding: 12px 40px;
  background: rgba(24, 24, 24, 0.96);
}

.nav-logo svg,
.nav-logo img {
  height: 44px;
}

.nav-links {
  flex: 0 1 auto;
  gap: 24px;
}

.nav-links a {
  color: rgba(253, 246, 237, 0.72) !important;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.13em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold) !important;
}

.nav-standings {
  align-self: center;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(182, 152, 90, 0.16);
  border-bottom-color: rgba(182, 152, 90, 0.22);
}

.nav-pos,
.nav-chip,
.nav-standings-more {
  min-height: 44px;
  padding-top: 0;
  padding-bottom: 0;
}

.feature-section {
  padding: 104px 40px;
}

.feature-inner,
.partners-inner,
.news-inner,
.contact-inner,
.stories-page__inner,
#matches-list,
#player-rows,
.coach-panels {
  max-width: 1360px;
}

#partners,
#news,
#contact,
#footer {
  padding-left: 40px;
  padding-right: 40px;
}

.feature-header,
.partners-header,
.news-header,
.contact-header,
.stories-page__header {
  margin-bottom: 52px;
}

.feature-title,
.partners-title,
.news-title,
.contact-title {
  letter-spacing: 0;
}

#matches-intro,
#news-intro,
#team-header {
  max-width: 1360px;
  padding: 104px 40px 34px;
}

#matches-intro h1,
#news-intro h1,
.team-header-row h1 {
  letter-spacing: 0;
}

.back-link {
  color: rgba(253, 246, 237, 0.8);
  border-color: rgba(253, 246, 237, 0.45);
}

.back-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

#stats.league-stats {
  background: var(--black);
}

.league-stats__inner {
  min-height: 600px;
}

.league-proof-grid {
  background: var(--black-2);
  color: var(--offwhite);
  border-top: 1px solid rgba(182, 152, 90, 0.14);
  border-bottom: 1px solid rgba(182, 152, 90, 0.14);
}

.league-proof-cell {
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(253, 246, 237, 0.08);
}

.league-number {
  color: var(--offwhite);
}

.league-label {
  color: rgba(253, 246, 237, 0.66);
}

.league-statement {
  background:
    linear-gradient(135deg, rgba(172, 0, 52, 0.96), rgba(138, 0, 41, 0.98)),
    var(--red);
}

.ticket-card,
.story-card,
.highlight-card,
.news-card,
.contact-card,
.store-card,
.partner-card,
.team-card,
.video-overlay__panel {
  border-radius: 0;
}

.story-card,
.highlight-card,
.ticket-card,
.news-card,
.contact-card,
.store-card {
  height: 100%;
}

.story-title,
.highlight-title,
.news-card-title,
.contact-card-heading,
.ticket-date,
.ticket-team span,
.team-name {
  overflow-wrap: anywhere;
}

.story-copy,
.highlight-copy,
.news-card-excerpt,
.ticket-meta,
.contact-card-info {
  color: rgba(253, 246, 237, 0.66);
}

.story-image,
.highlight-image {
  background-color: #101010;
}

.story-body,
.highlight-body {
  min-height: 142px;
}

.ticket-card {
  min-height: 100%;
}

.ticket-team,
.ticket-meta,
.match-team,
.match-teams,
.team-name {
  min-width: 0;
}

.stories-page {
  background: var(--black);
  max-width: 1360px;
}

.stories-page .stories-grid {
  align-items: stretch;
}

@media (max-width: 1240px) {
  .nav-standings {
    display: none;
  }
}

@media (max-width: 1420px) {
  .nav-standings {
    display: none;
  }
}

@media (max-width: 1024px) {

  #nav,
  #nav.scrolled {
    padding-left: 28px;
    padding-right: 28px;
  }

  .feature-section {
    padding: 88px 28px;
  }

  #partners,
  #news,
  #contact,
  #footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .league-stats__inner {
    min-height: 0;
  }

  .league-proof-cell:nth-child(n) {
    border-color: rgba(253, 246, 237, 0.08);
  }
}

@media (max-width: 900px) {

  #nav,
  #nav.scrolled {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
    margin-left: 0;
  }

  .nav-links[style*="fixed"] {
    top: 68px !important;
    padding: 26px 20px !important;
    gap: 18px !important;
    background: rgba(24, 24, 24, 0.98) !important;
    border-top: 1px solid rgba(182, 152, 90, 0.12) !important;
    border-bottom: 1px solid rgba(182, 152, 90, 0.18) !important;
    z-index: 999 !important;
  }

  .nav-links[style*="fixed"] a {
    font-size: 16px;
    line-height: 1;
  }

  #matches-intro,
  #news-intro,
  #team-header {
    padding: 92px 20px 26px;
  }

  #matches-list,
  #player-rows,
  .coach-panels {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .feature-section {
    padding: 72px 20px;
  }

  .stories-page {
    padding: 0 20px 56px;
  }

  #partners,
  #news,
  #contact,
  #footer {
    padding: 72px 20px;
  }

  .feature-header,
  .partners-header,
  .news-header,
  .contact-header,
  .stories-page__header {
    margin-bottom: 34px;
  }

  .feature-title {
    font-size: clamp(42px, 13vw, 62px);
  }

  .league-statement {
    padding: 42px 28px;
  }

  .league-proof-cell {
    padding: 34px 28px;
  }

  .story-image,
  .highlight-image {
    height: 210px;
  }

  .store-card__media {
    min-height: 360px;
  }

  .story-body,
  .highlight-body {
    min-height: auto;
  }
}

@media (max-width: 640px) {

  .nav-logo svg,
  .nav-logo img {
    height: 38px;
  }

  .feature-section {
    padding: 64px 18px;
  }

  #partners,
  #news,
  #contact,
  #footer {
    padding: 64px 18px;
  }

  #matches-intro,
  #news-intro,
  #team-header {
    padding: 86px 18px 24px;
  }

  #matches-intro h1,
  #news-intro h1 {
    font-size: 36px;
    line-height: 0.9;
  }

  .team-header-row h1 {
    font-size: clamp(52px, 18vw, 76px);
  }

  .league-statement__headline {
    font-size: clamp(54px, 17vw, 78px);
  }

  .league-proof-cell:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid rgba(253, 246, 237, 0.08);
  }

  .league-proof-cell:last-child {
    border-bottom: 0;
  }

  .ticket-card {
    padding: 22px;
  }

  .story-image,
  .highlight-image {
    height: 190px;
  }

  .store-grid {
    grid-template-columns: none;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: calc((100vw - 42px) / 2.5);
    gap: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .store-grid::-webkit-scrollbar {
    height: 4px;
  }

  .store-grid::-webkit-scrollbar-track {
    background: rgba(253, 246, 237, 0.06);
  }

  .store-grid::-webkit-scrollbar-thumb {
    background: rgba(182, 152, 90, 0.6);
  }

  .store-card {
    min-width: 0;
    scroll-snap-align: start;
  }

  .store-card__media {
    min-height: 0;
    padding: 30px 12px 10px;
  }

  .store-card__body {
    padding: 14px;
  }

  .store-card__title {
    font-size: 22px;
  }

  .store-card__tag {
    top: 10px;
    left: 10px;
    padding: 6px 7px;
    font-size: 8px;
  }

  .match-row {
    padding: 20px 0;
  }

  .match-action--tickets {
    min-width: 74px;
  }
}