:root {
  --ink: #101114;
  --paper: #f4f1e8;
  --white: #fffdf7;
  --blue: #1148ff;
  --blue-dark: #082bb8;
  --lime: #cfff32;
  --coral: #ff5a47;
  --yellow: #ffd43b;
  --line: rgba(16, 17, 20, 0.18);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Archivo", Arial, sans-serif;
  --page: min(1440px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  min-height: 78px;
  align-items: center;
  padding: 0 max(32px, calc((100vw - 1440px) / 2));
  border-bottom: 2px solid var(--ink);
  background: rgba(244, 241, 232, 0.94);
  backdrop-filter: blur(14px);
  grid-template-columns: 1fr auto 1fr;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol i {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  content: "";
}

.brand-symbol::before {
  left: -7px;
}

.brand-symbol::after {
  right: -7px;
}

.brand-symbol i {
  width: 11px;
  height: 11px;
  background: var(--lime);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  line-height: 0.78;
}

.brand-copy strong {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.brand-copy small {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4.4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  padding: 27px 0 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  content: "";
  transition: transform 160ms ease;
}

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

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

.feed-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1px;
}

.feed-indicator span {
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.feed-indicator[data-state="ready"] span {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(207, 255, 50, 0.25);
}

.feed-indicator[data-state="error"] span {
  background: var(--coral);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: end;
  overflow: hidden;
  padding: 86px max(32px, calc((100vw - 1440px) / 2)) 68px;
  background: var(--blue);
  color: var(--white);
  grid-template-columns: minmax(0, 1fr) auto;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 18px;
  height: 100%;
  background: var(--lime);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: -7vw;
  bottom: -16vw;
  width: 46vw;
  height: 46vw;
  border: clamp(45px, 6vw, 90px) solid var(--coral);
  border-radius: 50%;
  content: "";
  opacity: 0.94;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  padding: 7px 10px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
}

.hero h1 {
  max-width: 1050px;
  margin: 0;
  font: 900 clamp(86px, 10.5vw, 174px) / 0.73 var(--display);
  letter-spacing: -5px;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-description {
  max-width: 610px;
  margin: 35px 0 0;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.45;
}

.hero-numbers {
  position: relative;
  z-index: 3;
  display: grid;
  width: 310px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.hero-numbers div {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--ink);
}

.hero-numbers div:last-child {
  border: 0;
}

.hero-numbers strong {
  font: 900 42px/0.9 var(--display);
}

.hero-numbers span {
  margin-top: 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-pattern {
  position: absolute;
  z-index: -1;
  top: 3%;
  right: 4%;
  width: min(42vw, 590px);
  aspect-ratio: 1;
  transform: rotate(-8deg);
}

.hero-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.ring-one {
  inset: 0;
}

.ring-two {
  inset: 13%;
  border-color: rgba(207, 255, 50, 0.55);
}

.hero-ball {
  position: absolute;
  inset: 27%;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 20px 20px 0 var(--ink);
  color: var(--blue);
  font: 900 clamp(90px, 11vw, 160px) / 1 var(--display);
}

.club-ribbon {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
}

.club-ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  animation: ribbon-slide 42s linear infinite alternate;
}

.club-ribbon span {
  font: 800 15px/1 var(--display);
  letter-spacing: 0.5px;
}

.club-ribbon i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

@keyframes ribbon-slide {
  to {
    transform: translateX(calc(-100% + 100vw));
  }
}

.news-shell,
.latest-section,
.standings-section,
.source-section {
  padding: 92px max(32px, calc((100vw - 1440px) / 2));
}

.news-shell {
  background: var(--paper);
}

.section-intro {
  display: flex;
  max-width: 1440px;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto 40px;
  gap: 30px;
}

.section-kicker {
  color: var(--blue);
}

.section-intro h2,
.source-section h2 {
  margin: 0;
  font: 900 clamp(58px, 7vw, 108px) / 0.78 var(--display);
  letter-spacing: -2px;
  text-transform: uppercase;
}

.feed-status {
  margin: 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.lead-layout {
  display: grid;
  max-width: 1440px;
  min-height: 590px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  gap: 18px;
}

.lead-card {
  min-width: 0;
  border: 2px solid var(--ink);
  background: var(--lime);
  box-shadow: 10px 10px 0 var(--ink);
}

.lead-card > a {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(28px, 5vw, 70px);
  align-items: flex-end;
  text-decoration: none;
}

.lead-card-accent {
  position: absolute;
  top: -70px;
  right: -50px;
  display: grid;
  width: clamp(230px, 30vw, 460px);
  aspect-ratio: 1;
  place-items: center;
  border: clamp(26px, 4vw, 60px) solid var(--blue);
  border-radius: 50%;
  opacity: 0.98;
  transition: transform 250ms ease;
}

.lead-card-accent span {
  color: var(--blue);
  font: 900 clamp(70px, 10vw, 160px) / 1 var(--display);
}

.lead-card:hover .lead-card-accent {
  transform: rotate(10deg) scale(1.04);
}

.lead-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.article-label {
  display: inline-flex;
  width: max-content;
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.lead-card h3 {
  max-width: 850px;
  margin: 20px 0 26px;
  font: 900 clamp(42px, 5.1vw, 82px) / 0.88 var(--display);
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(16, 17, 20, 0.7);
  font-size: 9px;
  font-weight: 700;
}

.article-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.article-action {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  gap: 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.article-action b {
  font-size: 19px;
}

.side-news {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.side-card {
  min-width: 0;
  border: 2px solid var(--ink);
  background: var(--white);
  transition:
    transform 170ms ease,
    background-color 170ms ease;
}

.side-card:nth-child(2) {
  background: var(--coral);
}

.side-card:hover {
  transform: translateX(-6px);
  background: var(--yellow);
}

.side-card a {
  display: grid;
  min-height: 100%;
  align-items: start;
  padding: 24px;
  text-decoration: none;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
}

.side-index {
  color: var(--blue);
  font: 900 25px/1 var(--display);
}

.side-card h3 {
  margin: 12px 0 18px;
  font: 800 clamp(22px, 2vw, 30px) / 0.98 var(--display);
  text-transform: uppercase;
}

.side-arrow {
  font-size: 22px;
  font-weight: 900;
}

.lead-placeholder,
.side-placeholder {
  min-height: 590px;
  border: 2px solid var(--line);
  background:
    linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%),
    rgba(16, 17, 20, 0.06);
  background-size: 220% 100%;
  animation: loading-sheen 1.4s linear infinite;
}

@keyframes loading-sheen {
  to {
    background-position: -220% 0;
  }
}

.latest-section {
  border-top: 2px solid var(--ink);
  background: var(--white);
}

.latest-heading {
  align-items: center;
}

.topic-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.topic-filter {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  transition: 150ms ease;
}

.topic-filter:hover,
.topic-filter.active {
  background: var(--blue);
  color: var(--white);
}

.news-grid {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  min-height: 310px;
  border: 2px solid var(--ink);
  background: var(--paper);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.news-card:nth-child(5n + 1) {
  grid-column: span 2;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 7px 7px 0 var(--ink);
}

.news-card.blue {
  background: var(--blue);
  color: var(--white);
}

.news-card.lime {
  background: var(--lime);
}

.news-card.coral {
  background: var(--coral);
}

.news-card a {
  display: flex;
  min-height: 100%;
  padding: clamp(22px, 3vw, 38px);
  flex-direction: column;
  text-decoration: none;
}

.news-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.news-card-top > span:last-child {
  font-size: 24px;
  font-weight: 900;
}

.news-card h3 {
  margin: 28px 0 34px;
  font: 800 clamp(28px, 3.1vw, 46px) / 0.94 var(--display);
  text-transform: uppercase;
}

.news-card .article-meta {
  margin-top: auto;
}

.news-card.blue .article-meta {
  color: rgba(255, 255, 255, 0.72);
}

.refresh-button {
  display: flex;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
  margin: 34px auto 0;
  padding: 20px 0;
  border: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.refresh-button b {
  display: inline-block;
  color: var(--blue);
  font-size: 24px;
}

.refresh-button.is-loading b {
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.short-feed {
  grid-column: 1 / -1;
  margin: 0;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: rgba(16, 17, 20, 0.65);
  font-size: 12px;
}

.standings-section {
  border-top: 2px solid var(--ink);
  background: var(--paper);
}

.standings-heading {
  align-items: end;
}

.standings-status {
  margin: 0;
  color: rgba(16, 17, 20, 0.68);
  font-size: 10px;
  font-weight: 700;
}

.standings-layout {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 18px;
}

.standings-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
}

.standings-table-wrap {
  overflow-x: auto;
}

.standings-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 11px;
}

.standings-table th {
  padding: 15px 12px;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-align: center;
}

.standings-table th:nth-child(2) {
  text-align: left;
}

.standings-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-align: center;
}

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

.standings-table td:first-child {
  width: 48px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
}

.standings-table .team-cell {
  display: flex;
  min-width: 190px;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.team-cell img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.standings-table .points {
  font-weight: 900;
}

.standings-table tr.is-leader td {
  background: rgba(207, 255, 50, 0.62);
}

.standings-table tr.is-relegation td {
  background: rgba(255, 90, 71, 0.16);
}

.standings-form {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.standings-form i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #adb2ad;
}

.standings-form i.win {
  background: #169f45;
}

.standings-form i.draw {
  background: var(--yellow);
}

.standings-form i.loss {
  background: var(--coral);
}

.standings-aside {
  display: flex;
  min-height: 100%;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 58px);
  background: var(--coral);
  color: var(--ink);
  flex-direction: column;
}

.standings-aside .section-kicker {
  color: var(--ink);
}

.standings-aside h3 {
  margin: 0;
  font: 900 clamp(48px, 5vw, 76px) / 0.8 var(--display);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.standings-aside h3 em {
  color: var(--white);
  font-style: normal;
}

.standings-aside > p:not(.section-kicker) {
  max-width: 360px;
  margin: 24px 0 30px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.standings-insight {
  display: grid;
  gap: 8px;
}

.standings-insight span {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(16, 17, 20, 0.4);
  font-size: 10px;
  font-weight: 800;
}

.standings-insight strong {
  display: block;
  margin-top: 4px;
  font: 900 28px / 1 var(--display);
  text-transform: uppercase;
}

.standings-legend {
  display: flex;
  margin-top: 30px;
  gap: 14px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.standings-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.standings-legend i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
}

.standings-legend .leader {
  background: var(--lime);
}

.standings-legend .relegation {
  background: var(--coral);
}

.standings-loading {
  display: grid;
  min-height: 560px;
  padding: 18px;
  gap: 10px;
}

.standings-loading span {
  display: block;
  border-radius: 2px;
  background:
    linear-gradient(110deg, rgba(16, 17, 20, 0.04) 30%, rgba(16, 17, 20, 0.13) 50%, rgba(16, 17, 20, 0.04) 70%);
  background-size: 220% 100%;
  animation: loading-sheen 1.4s linear infinite;
}

.empty-state {
  display: flex;
  min-height: 360px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 42px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  flex-direction: column;
  grid-column: 1 / -1;
}

.empty-state strong {
  font: 900 clamp(38px, 5vw, 70px) / 0.9 var(--display);
  text-transform: uppercase;
}

.empty-state p {
  max-width: 520px;
  margin: 18px 0 0;
  line-height: 1.5;
}

.source-section {
  display: grid;
  border-top: 2px solid var(--ink);
  background: var(--blue);
  color: var(--white);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.source-section .section-kicker {
  color: var(--lime);
}

.source-copy {
  align-self: end;
}

.source-copy > p {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.source-list span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

footer {
  display: grid;
  align-items: center;
  padding: 34px max(32px, calc((100vw - 1440px) / 2));
  border-top: 2px solid var(--ink);
  background: var(--lime);
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
}

footer p {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
}

footer p:last-child {
  text-align: right;
}

.footer-brand .brand-symbol {
  width: 36px;
  height: 36px;
}

.footer-brand .brand-copy strong {
  font-size: 23px;
}

.footer-brand .brand-copy small {
  font-size: 9px;
}

@media (max-width: 1050px) {
  :root {
    --page: min(100% - 40px, 920px);
  }

  .site-header {
    padding-right: 20px;
    padding-left: 20px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px 20px 20px;
    border-bottom: 2px solid var(--ink);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 760px;
    padding-right: 24px;
    padding-left: 24px;
    grid-template-columns: 1fr;
  }

  .hero-pattern {
    top: 5%;
    right: -9%;
    width: 55vw;
  }

  .hero-numbers {
    width: min(100%, 380px);
    margin-top: 55px;
  }

  .news-shell,
  .latest-section,
  .standings-section,
  .source-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .lead-layout {
    grid-template-columns: 1fr;
  }

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

  .side-card a {
    grid-template-columns: 1fr auto;
  }

  .side-index {
    display: none;
  }

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

  .source-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .standings-layout {
    grid-template-columns: 1fr;
  }
}

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

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 23px;
  }

  .brand-copy small {
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: 3.5px;
  }

  .feed-indicator {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding-top: 70px;
    padding-bottom: 36px;
  }

  .hero::before {
    width: 9px;
  }

  .hero::after {
    right: -38vw;
    bottom: -8vw;
    width: 100vw;
    height: 100vw;
    border-width: 48px;
  }

  .hero-pattern {
    top: 7%;
    right: -25%;
    width: 88vw;
    opacity: 0.7;
  }

  .hero h1 {
    font-size: clamp(64px, 22vw, 100px);
    letter-spacing: -2px;
  }

  .hero-description {
    max-width: 92%;
    margin-top: 24px;
    font-size: 14px;
  }

  .hero-numbers {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }

  .hero-numbers div {
    min-height: 78px;
  }

  .hero-numbers strong {
    font-size: 31px;
  }

  .club-ribbon-track {
    animation-duration: 28s;
  }

  .news-shell,
  .latest-section,
  .standings-section,
  .source-section {
    padding: 64px 18px;
  }

  .section-intro {
    align-items: flex-start;
    margin-bottom: 28px;
    flex-direction: column;
  }

  .section-intro h2,
  .source-section h2 {
    font-size: 59px;
  }

  .feed-status {
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .lead-layout {
    min-height: 0;
  }

  .lead-card {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .lead-card > a {
    min-height: 480px;
    padding: 26px;
  }

  .lead-card-accent {
    top: -25px;
    right: -70px;
    width: 280px;
  }

  .lead-card h3 {
    margin-top: 16px;
    font-size: clamp(39px, 13vw, 58px);
  }

  .side-news {
    grid-template-columns: 1fr;
  }

  .side-card a {
    min-height: 190px;
    padding: 20px;
  }

  .side-card:hover {
    transform: translateY(-4px);
  }

  .topic-filters {
    justify-content: flex-start;
  }

  .topic-filter {
    padding: 9px 12px;
  }

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

  .news-card,
  .news-card:nth-child(5n + 1) {
    min-height: 270px;
    grid-column: auto;
  }

  .source-section {
    gap: 32px;
  }

  footer {
    padding: 28px 18px;
    grid-template-columns: 1fr;
  }

  footer p:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
