/* =========================================================
   SEASON PAGE
   Editorial sans-serif
   ========================================================= */

.season-page {

  --ink: var(--cc-ink);
  --body: var(--cc-text);
  --muted: var(--cc-subtle);

  --rule: var(--cc-rule);
  --soft-rule: var(--cc-rule-soft);

  --soft: var(--cc-soft);

  --season-nav-sticky-top: 0px;

  width: 100%;
  max-width: 1160px;

  margin: 0 auto;

  padding:
    24px
    20px
    70px;

  box-sizing: border-box;

  color: var(--body);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Helvetica Neue",
    Arial,
    sans-serif;
}


.season-page *,
.season-page *::before,
.season-page *::after {

  box-sizing: border-box;
}


.season-page a:focus-visible,
.season-page button:focus-visible {

  outline:
    3px solid
    rgba(8,127,184,.35);

  outline-offset: 3px;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.season-breadcrumb {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 7px;

  margin:
    0
    0
    31px;

  font-size: .73rem;

  font-weight: 700;

  color: var(--muted);
}


.season-breadcrumb a {

  color: var(--muted);

  text-decoration: none;
}


.season-breadcrumb a:hover {

  color: var(--ink);

  text-decoration: underline;
}


.season-breadcrumb__sep {

  color: #aaa;
}


/* =========================================================
   HEADER
   ========================================================= */

.season-header {

  padding:
    8px
    0
    30px;

  border-bottom:
    1px solid
    var(--rule);
}


.season-kicker {

  display: block;

  margin-bottom: 12px;

  font-size: .69rem;

  line-height: 1;

  font-weight: 900;

  letter-spacing: .13em;

  text-transform: uppercase;

  color: var(--cc-red);
}


.season-title {

  max-width: 1000px;

  margin: 0;

  font-size:
    clamp(
      3.4rem,
      8vw,
      6.8rem
    );

  line-height: .88;

  font-weight: 900;

  letter-spacing: -.065em;

  color: var(--ink);
}


.season-subtitle {

  display: block;

  margin-top: 18px;

  font-size: .8rem;

  font-weight: 850;

  letter-spacing: .095em;

  text-transform: uppercase;

  color: var(--muted);
}


/* =========================================================
   INTERNAL NAV
   ========================================================= */

.season-nav-wrap {

  position: sticky;

  top:
    var(
      --season-nav-sticky-top,
      0px
    );

  z-index: 80;

  margin:
    0
    -20px;

  padding:
    0
    20px;

  background:
    rgba(255,255,255,.96);

  border-bottom:
    1px solid
    var(--rule);

  backdrop-filter:
    blur(10px);
}


.season-nav {

  display: flex;

  align-items: center;

  gap: 25px;

  min-height: 48px;

  overflow-x: auto;

  scrollbar-width: none;
}


.season-nav::-webkit-scrollbar {

  display: none;
}


.season-nav a {

  position: relative;

  flex: 0 0 auto;

  display: inline-flex;

  align-items: center;

  min-height: 48px;

  color: #666;

  font-size: .65rem;

  line-height: 1;

  font-weight: 900;

  letter-spacing: .07em;

  text-decoration: none;

  text-transform: uppercase;
}


.season-nav a::after {

  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -1px;

  height: 3px;

  background: transparent;
}


.season-nav a:hover,
.season-nav a.is-active {

  color: var(--ink);
}


.season-nav a.is-active::after {

  background: var(--cc-red);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.season-anchor {

  scroll-margin-top:
    calc(
      var(
        --season-nav-sticky-top,
        0px
      )
      +
      65px
    );
}


.season-section {

  margin-top: 54px;
}


.season-section__heading {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 18px;

  padding-bottom: 11px;

  border-bottom:
    3px solid
    var(--ink);
}


.season-section__title {

  margin: 0;

  font-size: .76rem;

  line-height: 1;

  font-weight: 900;

  letter-spacing: .1em;

  text-transform: uppercase;

  color: var(--ink);
}


.season-section__meta {

  flex-shrink: 0;

  color: #888;

  font-size: .69rem;

  font-weight: 700;
}


/* =========================================================
   OVERVIEW PHOTO
   ========================================================= */

.season-overview {

  padding-top: 34px;
}


.season-photo {

  position: relative;

  width: 100%;

  margin: 0;

  overflow: hidden;

  background: #efefef;
}


.season-photo img {

  display: block;

  width: 100%;
  height: auto;

  max-height: 650px;

  object-fit: cover;
}


.season-photo__fallback {

  aspect-ratio: 16 / 7;

  display: flex;

  align-items: flex-end;

  padding: 26px;

  background:
    linear-gradient(
      135deg,
      var(--cc-red),
      var(--cc-blue)
    );

  color: #fff;
}


.season-photo__fallback strong {

  max-width: 760px;

  font-size:
    clamp(
      2.2rem,
      6vw,
      5rem
    );

  line-height: .9;

  font-weight: 900;

  letter-spacing: -.05em;
}


.season-overview__facts {

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0,1fr)
    );

  border-bottom:
    1px solid
    var(--rule);
}


.season-overview__fact {

  padding:
    18px
    20px;

  border-right:
    1px solid
    var(--soft-rule);
}


.season-overview__fact:first-child {

  padding-left: 0;
}


.season-overview__fact:last-child {

  border-right: 0;
}


.season-overview__label {

  display: block;

  margin-bottom: 6px;

  font-size: .61rem;

  font-weight: 900;

  letter-spacing: .075em;

  text-transform: uppercase;

  color: #888;
}


.season-overview__value {

  display: block;

  font-size: .9rem;

  line-height: 1.35;

  font-weight: 750;

  color: var(--ink);
}


/* =========================================================
   MAIN NUMBERS
   ========================================================= */

.season-numbers {

  display: grid;

  grid-template-columns:
    repeat(
      6,
      minmax(0,1fr)
    );

  padding:
    25px
    0;

  border-top:
    3px solid
    var(--ink);

  border-bottom:
    1px solid
    var(--ink);
}


.season-number {

  min-width: 0;

  padding:
    0
    18px;

  border-right:
    1px solid
    var(--rule);
}


.season-number:first-child {

  padding-left: 0;
}


.season-number:last-child {

  border-right: 0;

  padding-right: 0;
}


.season-number__value {

  display: block;

  font-size:
    clamp(
      1.9rem,
      3.6vw,
      3.15rem
    );

  line-height: .95;

  font-weight: 900;

  letter-spacing: -.055em;

  color: var(--ink);
}


.season-number__label {

  display: block;

  margin-top: 8px;

  font-size: .6rem;

  line-height: 1.25;

  font-weight: 900;

  letter-spacing: .075em;

  text-transform: uppercase;

  color: #777;
}


/* =========================================================
   PERFORMANCE TABLE
   ========================================================= */

.performance-block + .performance-block {

  margin-top: 35px;
}


.performance-block__title {

  margin:
    0
    0
    12px;

  font-size: .72rem;

  font-weight: 900;

  letter-spacing: .07em;

  text-transform: uppercase;

  color: var(--ink);
}


.performance-table-wrap {

  width: 100%;

  overflow-x: auto;
}


.performance-table {

  width: 100%;

  min-width: 700px;

  border-collapse: collapse;

  font-size: .84rem;
}


.performance-table th {

  padding:
    0
    12px
    10px;

  border-bottom:
    1px solid
    var(--ink);

  color: #777;

  font-size: .59rem;

  font-weight: 900;

  letter-spacing: .065em;

  text-align: center;

  text-transform: uppercase;
}


.performance-table th:first-child {

  padding-left: 0;

  text-align: left;
}


.performance-table td {

  padding:
    14px
    12px;

  border-bottom:
    1px solid
    var(--soft-rule);

  text-align: center;
}


.performance-table td:first-child {

  padding-left: 0;

  text-align: left;

  font-weight: 850;

  color: var(--ink);
}


.performance-table tbody tr:last-child td {

  font-weight: 850;

  border-bottom-color:
    var(--rule);
}


/* =========================================================
   ATTENDANCE
   ========================================================= */

.attendance-grid {

  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0,1fr)
    );

  margin-top: 34px;

  border-top:
    1px solid
    var(--ink);
}


.attendance-item {

  padding:
    20px;

  border-right:
    1px solid
    var(--soft-rule);

  border-bottom:
    1px solid
    var(--rule);
}


.attendance-item:first-child {

  padding-left: 0;
}


.attendance-item:last-child {

  border-right: 0;
}


.attendance-item__label {

  display: block;

  margin-bottom: 9px;

  color: #777;

  font-size: .61rem;

  font-weight: 900;

  letter-spacing: .07em;

  text-transform: uppercase;
}


.attendance-item__value {

  display: block;

  margin-bottom: 6px;

  color: var(--ink);

  font-size:
    clamp(
      1.55rem,
      3vw,
      2.4rem
    );

  line-height: 1;

  font-weight: 900;

  letter-spacing: -.04em;
}


.attendance-item__detail {

  display: block;

  color: #666;

  font-size: .73rem;

  line-height: 1.45;
}


.attendance-item__detail a {

  color: inherit;

  text-decoration: underline;

  text-underline-offset: 2px;
}


/* =========================================================
   LEADERS
   ========================================================= */

.leaders-grid {

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0,1fr)
    );

  gap: 42px;
}


.leader-column__title {

  margin:
    0
    0
    10px;

  padding-bottom: 9px;

  border-bottom:
    1px solid
    var(--ink);

  font-size: .69rem;

  font-weight: 900;

  letter-spacing: .075em;

  text-transform: uppercase;
}


.leader-row {

  display: grid;

  grid-template-columns:
    24px
    48px
    minmax(0,1fr)
    auto;

  align-items: center;

  gap: 11px;

  min-height: 67px;

  border-bottom:
    1px solid
    var(--soft-rule);
}


.leader-rank {

  color: #8a8a8a;

  font-size: .72rem;

  font-weight: 850;
}


.leader-photo {

  width: 42px;
  height: 50px;

  overflow: hidden;

  background: #efefef;
}


.leader-photo img {

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.leader-photo__fallback {

  width: 100%;
  height: 100%;

  display: grid;

  place-items: center;

  color: #555;

  font-size: .7rem;

  font-weight: 900;
}


.leader-info {

  min-width: 0;
}


.leader-info a {

  display: block;

  overflow: hidden;

  color: var(--ink);

  font-size: .84rem;

  font-weight: 800;

  text-decoration: none;

  text-overflow: ellipsis;

  white-space: nowrap;
}


.leader-info a:hover {

  color: var(--cc-blue);

  text-decoration: underline;

  text-underline-offset: 3px;
}


.leader-role {

  display: block;

  margin-top: 4px;

  color: #818181;

  font-size: .66rem;
}


.leader-value {

  text-align: right;
}


.leader-value strong {

  display: block;

  color: var(--ink);

  font-size: 1.32rem;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -.035em;
}


.leader-value span {

  display: block;

  margin-top: 4px;

  color: #888;

  font-size: .59rem;

  font-weight: 800;

  text-transform: uppercase;
}



/* =========================================================
   OPPONENTS
   ========================================================= */

.season-opponents-grid {

  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0,1fr)
    );

  gap: 12px;
}


.season-opponent-card {

  min-width: 0;

  display: flex;

  flex-direction: column;

  min-height: 250px;

  padding: 17px;

  border:
    1px solid
    var(--rule);

  background: #fff;

  color: var(--ink);

  text-decoration: none;
}


.season-opponent-card:hover {

  border-color: #aaa;
}


.season-opponent-card__head {

  display: grid;

  grid-template-columns:
    62px
    minmax(0,1fr);

  gap: 12px;

  align-items: center;
}


.season-opponent-card__logo {

  width: 62px;
  height: 62px;

  display: grid;

  place-items: center;

  padding: 5px;

  overflow: hidden;

  border:
    1px solid
    var(--soft-rule);

  border-radius: 50%;

  background: #fff;

  color: var(--cc-blue);

  font-size: 1.15rem;

  font-weight: 900;
}


.season-opponent-card__logo img {

  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


.season-opponent-card__name {

  margin: 0;

  color: var(--ink);

  font-size: 1rem;

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -.025em;
}


.season-opponent-card__season {

  display: block;

  margin-top: 5px;

  color: #888;

  font-size: .59rem;

  font-weight: 700;
}


.season-opponent-card__stats {

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0,1fr)
    );

  margin-top: 17px;

  border-top:
    1px solid
    var(--rule);

  border-bottom:
    1px solid
    var(--rule);
}


.season-opponent-stat {

  padding:
    11px
    6px;

  border-right:
    1px solid
    var(--soft-rule);

  text-align: center;
}


.season-opponent-stat:last-child {

  border-right: 0;
}


.season-opponent-stat strong {

  display: block;

  color: var(--ink);

  font-size: 1rem;

  line-height: 1;

  font-weight: 900;
}


.season-opponent-stat:nth-child(2) strong {

  color: #188442;
}


.season-opponent-stat:nth-child(4) strong {

  color: var(--cc-red);
}


.season-opponent-stat span {

  display: block;

  margin-top: 5px;

  color: #999;

  font-size: .47rem;

  font-weight: 900;

  letter-spacing: .055em;

  text-transform: uppercase;
}


.season-opponent-card__foot {

  margin-top: auto;

  padding-top: 13px;

  color: #777;

  font-size: .61rem;

  line-height: 1.4;
}


.season-opponent-card__foot strong {

  color: #333;
}


.season-opponent-card__cta {

  display: block;

  margin-top: 9px;

  color: var(--cc-blue);

  font-size: .55rem;

  font-weight: 900;

  letter-spacing: .06em;

  text-transform: uppercase;
}


/* =========================================================
   REFEREES
   ========================================================= */

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

.season-referee-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 17px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.season-referee-card:hover {
  border-color: #aaa;
}

.season-referee-card__head {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 12px;
  align-items: center;
}

.season-referee-card__avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #111;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .03em;
}

.season-referee-card__name {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.025em;
}

.season-referee-card__section {
  display: block;
  margin-top: 5px;
  color: #888;
  font-size: .61rem;
  line-height: 1.3;
  font-weight: 700;
}

.season-referee-card__stats {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  margin-top: 17px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.season-referee-stat {
  padding: 11px 6px;
  border-right: 1px solid var(--soft-rule);
  text-align: center;
}

.season-referee-stat:last-child {
  border-right: 0;
}

.season-referee-stat strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
}

.season-referee-stat:nth-child(2) strong {
  color: #188442;
}

.season-referee-stat:nth-child(4) strong {
  color: var(--cc-red);
}

.season-referee-stat span {
  display: block;
  margin-top: 5px;
  color: #999;
  font-size: .47rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.season-referee-card__foot {
  margin-top: auto;
  padding-top: 13px;
  color: #777;
  font-size: .61rem;
  line-height: 1.45;
}

.season-referee-card__foot strong {
  color: #333;
}

.season-referee-card__cta {
  display: block;
  margin-top: 9px;
  color: var(--cc-blue);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.season-referee-card__avatar img {

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================================================
   MATCHES
   ========================================================= */

.competition-block + .competition-block {

  margin-top: 44px;
}


.competition-title {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  margin-bottom: 10px;
}


.competition-title h3 {

  margin: 0;

  color: var(--ink);

  font-size: .7rem;

  font-weight: 900;

  letter-spacing: .075em;

  text-transform: uppercase;
}


.competition-title span {

  color: #888;

  font-size: .67rem;

  font-weight: 700;
}


.matches-list {

  border-top:
    1px solid
    var(--ink);
}


.match-row {

  display: grid;

  grid-template-columns:
    92px
    90px
    minmax(300px,1fr)
    44px
    70px;

  align-items: center;

  gap: 15px;

  min-height: 68px;

  padding:
    10px
    8px;

  border-bottom:
    1px solid
    var(--soft-rule);
}


.match-row:hover {

  background: #fafafa;
}


.match-row.is-extra {

  display: none;
}


.matches-list.is-expanded
.match-row.is-extra {

  display: grid;
}


.match-date {

  color: #6f6f6f;

  font-size: .68rem;

  font-weight: 850;
}


.match-round {

  color: #777;

  font-size: .61rem;

  font-weight: 800;

  letter-spacing: .035em;

  text-transform: uppercase;
}


.match-teams {

  min-width: 0;

  display: grid;

  grid-template-columns:
    minmax(0,1fr)
    23px
    minmax(0,1fr);

  align-items: center;

  gap: 8px;
}


.match-team {

  min-width: 0;

  display: flex;

  align-items: center;

  gap: 9px;

  color: var(--ink);

  font-size: .83rem;

  font-weight: 750;
}


.match-team--away {

  justify-content: flex-end;

  text-align: right;
}


.match-team span {

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}


.match-logo {

  width: 30px;
  height: 30px;

  flex:
    0
    0
    30px;

  object-fit: contain;
}


.match-logo-fallback {

  width: 30px;
  height: 30px;

  flex:
    0
    0
    30px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: #f0f0f0;

  color: #666;

  font-size: .68rem;

  font-weight: 900;
}


.match-versus {

  color: #aaa;

  text-align: center;
}


.match-score {

  text-align: right;
}


.match-score a {

  min-width: 52px;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  padding:
    7px
    9px;

  border-radius: 3px;

  background: var(--ink);

  color: #fff;

  font-size: .9rem;

  font-weight: 900;

  text-decoration: none;
}


.match-score a.is-upcoming {

  border:
    1px solid
    var(--rule);

  background: #fff;

  color: #666;
}


.match-score a:hover {

  border-color:
    var(--cc-blue);

  background:
    var(--cc-blue);

  color: #fff;
}


/* HIGHLIGHTS DISPONIBILI */

.match-highlights {

  display: grid;

  place-items: center;

  width: 44px;
}


.match-highlights__link {

  display: grid;

  place-items: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: var(--ink);

  color: #fff;

  text-decoration: none;

  transition:
    background .15s ease,
    transform .15s ease;
}


.match-highlights__link:hover {

  background: var(--cc-red);

  transform: scale(1.06);
}


.match-highlights__link:focus-visible {

  outline:
    3px solid
    rgba(8,127,184,.35);

  outline-offset: 3px;
}


.match-highlights__link svg {

  display: block;

  width: 10px;
  height: 12px;

  fill: currentColor;

  transform: translateX(1px);
}


.match-highlights__empty {

  display: block;

  width: 30px;
  height: 30px;
}


.matches-toggle {

  margin-top: 15px;

  padding:
    10px
    0;

  border: 0;

  border-bottom:
    1px solid
    var(--ink);

  background: transparent;

  color: var(--ink);

  font: inherit;

  font-size: .66rem;

  font-weight: 900;

  letter-spacing: .07em;

  text-transform: uppercase;

  cursor: pointer;
}


/* =========================================================
   ROSTER
   ========================================================= */

.roster-group + .roster-group {

  margin-top: 38px;
}


.roster-group__title {

  margin:
    0
    0
    10px;

  padding-bottom: 9px;

  border-bottom:
    1px solid
    var(--ink);

  color: var(--ink);

  font-size: .69rem;

  font-weight: 900;

  letter-spacing: .075em;

  text-transform: uppercase;
}


.roster-grid {

  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0,1fr)
    );

  column-gap: 28px;
}


.roster-player {

  min-width: 0;

  display: grid;

  grid-template-columns:
    54px
    minmax(0,1fr)
    auto;

  align-items: center;

  gap: 11px;

  min-height: 76px;

  border-bottom:
    1px solid
    var(--soft-rule);
}


.roster-photo {

  width: 48px;
  height: 60px;

  overflow: hidden;

  background: #efefef;
}


.roster-photo img {

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.roster-photo__fallback {

  width: 100%;
  height: 100%;

  display: grid;

  place-items: center;

  color: #555;

  font-size: .7rem;

  font-weight: 900;
}


.roster-info {

  min-width: 0;
}


.roster-name {

  display: block;

  overflow: hidden;

  color: var(--ink);

  font-size: .82rem;

  font-weight: 800;

  text-decoration: none;

  text-overflow: ellipsis;

  white-space: nowrap;
}


.roster-name:hover {

  color: var(--cc-blue);

  text-decoration: underline;

  text-underline-offset: 3px;
}


.roster-meta {

  display: block;

  margin-top: 4px;

  color: #888;

  font-size: .64rem;
}


.roster-stat {

  min-width: 32px;

  text-align: right;
}


.roster-stat strong {

  display: block;

  color: var(--ink);

  font-size: 1.05rem;

  line-height: 1;

  font-weight: 900;
}


.roster-stat span {

  display: block;

  margin-top: 4px;

  color: #999;

  font-size: .54rem;

  font-weight: 850;

  letter-spacing: .04em;

  text-transform: uppercase;
}


/* =========================================================
   EMPTY
   ========================================================= */

.season-empty {

  padding:
    22px
    0;

  border-bottom:
    1px solid
    var(--rule);

  color: #777;

  font-size: .88rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .season-numbers {

    grid-template-columns:
      repeat(
        3,
        minmax(0,1fr)
      );

    padding: 0;
  }


  .season-number {

    padding:
      20px
      16px;

    border-bottom:
      1px solid
      var(--rule);
  }


  .season-number:nth-child(3n) {

    border-right: 0;
  }


  .season-number:first-child {

    padding-left: 16px;
  }


  .season-number:last-child {

    padding-right: 16px;
  }


  .roster-grid {

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


  .season-opponents-grid,
  .season-referees-grid {

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


  .match-row {

    grid-template-columns:
      80px
      75px
      minmax(250px,1fr)
      44px
      65px;

    gap: 10px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .season-page {

    padding:
      18px
      14px
      50px;
  }


  .season-breadcrumb {

    margin-bottom: 24px;
  }


  .season-title {

    font-size:
      clamp(
        3rem,
        16vw,
        4.7rem
      );
  }


  .season-nav-wrap {

    margin:
      0
      -14px;

    padding:
      0
      14px;
  }


  .season-nav {

    gap: 20px;
  }


  .season-overview {

    padding-top: 24px;
  }


  .season-photo {

    margin:
      0
      -14px;

    width:
      calc(
        100%
        +
        28px
      );
  }


  .season-photo img {

    min-height: 230px;

    object-fit: cover;
  }


  .season-photo__fallback {

    min-height: 230px;

    aspect-ratio: auto;
  }


  .season-overview__facts {

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


  .season-overview__fact {

    padding:
      15px
      12px;

    border-bottom:
      1px solid
      var(--soft-rule);
  }


  .season-overview__fact:nth-child(2n) {

    border-right: 0;
  }


  .season-overview__fact:first-child {

    padding-left: 12px;
  }


  .season-section {

    margin-top: 44px;
  }


  .season-numbers {

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


  .season-number,
  .season-number:first-child,
  .season-number:last-child {

    padding:
      19px
      12px;
  }


  .season-number:nth-child(3n) {

    border-right:
      1px solid
      var(--rule);
  }


  .season-number:nth-child(2n) {

    border-right: 0;
  }


  .leaders-grid {

    grid-template-columns: 1fr;

    gap: 38px;
  }


  .season-opponents-grid,
  .season-referees-grid {

    grid-template-columns: 1fr;
  }


  .season-opponent-card {

    min-height: 0;
  }


  .attendance-grid {

    grid-template-columns: 1fr;
  }


  .attendance-item,
  .attendance-item:first-child {

    padding:
      17px
      0;

    border-right: 0;
  }


  .match-row {

    grid-template-columns:
      minmax(0,1fr)
      auto
      36px;

    grid-template-areas:
      "date round video"
      "teams teams teams"
      "score score score";

    gap:
      10px
      10px;

    min-height: 0;

    padding:
      15px
      2px;
  }


  .matches-list.is-expanded
  .match-row.is-extra {

    display: grid;
  }


  .match-date {

    grid-area: date;
  }


  .match-round {

    grid-area: round;

    text-align: right;
  }


  .match-teams {

    grid-area: teams;

    padding-top: 3px;
  }


  .match-team {

    flex-direction: column;

    align-items: flex-start;

    gap: 5px;

    font-size: .76rem;
  }


  .match-team--away {

    align-items: flex-end;
  }


  .match-team span {

    white-space: normal;
  }


  .match-logo,
  .match-logo-fallback {

    width: 35px;
    height: 35px;

    flex-basis: 35px;
  }


  .match-highlights {

    grid-area: video;

    width: 36px;

    justify-self: end;
  }


  .match-highlights__link {

    width: 28px;
    height: 28px;
  }


  .match-highlights__empty {

    width: 28px;
    height: 28px;
  }


  .match-score {

    grid-area: score;

    text-align: center;
  }


  .match-score a {

    min-width: 62px;

    padding:
      8px
      12px;

    font-size: 1rem;
  }


  .roster-grid {

    grid-template-columns: 1fr;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (
  prefers-reduced-motion: reduce
) {

  html {

    scroll-behavior: auto;
  }


  .match-highlights__link {

    transition: none;
  }


  .match-highlights__link:hover {

    transform: none;
  }

}
