.lines-season-page {
  background: #ffffff;
}

.season-hero {
  padding: 70px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.season-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.season-hero h1 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.season-hero p {
  max-width: 720px;
  margin: 0;
  color: #536176;
  font-size: 1rem;
}

.team-selector-section {
  padding: 52px 0 70px;
}

.team-selector-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.team-selector-heading h2 {
  margin: 0 0 4px;
  color: var(--navy-deep);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  text-transform: uppercase;
}

.team-selector-heading p {
  margin: 0;
  color: #667085;
}

.season-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid #d8dfeb;
  border-radius: 999px;
  background: #f8faff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.conference-block + .conference-block {
  margin-top: 42px;
}

.conference-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.conference-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

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

.division-card {
  overflow: hidden;
  border: 1px solid #d7deea;
  border-radius: 10px;
  background: #ffffff;
}

.division-card h3 {
  margin: 0;
  padding: 15px 18px;
  border-bottom: 1px solid #dfe5ee;
  background: #f8faff;
  color: var(--navy-deep);
  font-size: 1rem;
  text-transform: uppercase;
}

.team-list {
  display: grid;
}

.team-list a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #edf0f5;
  color: #1c2b44;
  transition:
    background-color 140ms ease,
    color 140ms ease,
    padding-left 140ms ease;
}

.team-list a:last-child {
  border-bottom: 0;
}

.team-list a:hover {
  padding-left: 22px;
  background: #f8faff;
  color: var(--blue);
}

.team-code {
  color: #7a879c;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.team-list a:hover .team-code {
  color: var(--blue);
}

.arrow {
  color: #9ba5b5;
  font-size: 1.1rem;
  transition: transform 140ms ease;
}

.team-list a:hover .arrow {
  color: var(--blue);
  transform: translateX(3px);
}

.lines-page-note {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: #f8faff;
  color: #5d687b;
  font-size: 0.88rem;
}

.lines-page-note strong {
  color: var(--navy-deep);
  white-space: nowrap;
}

.nav-dropdown-menu .current-season {
  background: var(--soft);
  color: var(--blue);
}

@media (max-width: 820px) {
  .season-hero {
    padding: 48px 0 34px;
  }

  .team-selector-section {
    padding: 40px 0 54px;
  }

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

  .team-selector-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .lines-page-note {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .team-list a {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding: 0 14px;
  }

  .team-list a:hover {
    padding-left: 16px;
  }
}
