:root {
  --ink: #06110f;
  --ink-soft: #0b1c18;
  --panel: #0e211d;
  --panel-2: #122a24;
  --line: rgba(211, 231, 222, 0.13);
  --text: #f6f3e9;
  --muted: #a9b8b1;
  --lime: #d9f04b;
  --gold: #efb522;
  --green: #37c776;
  --danger: #ff675d;
  --paper: #f2f0e7;
  --black: #08110e;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Archivo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at 50% 2%, rgba(38, 98, 68, 0.18), transparent 28rem),
    var(--ink);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(20px, 5vw, 84px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 15, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
}

.brand-mark svg {
  width: 25px;
  fill: var(--black);
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

.brand strong {
  font: 800 22px/0.85 var(--display);
  letter-spacing: 1px;
}

.brand small {
  margin-top: 4px;
  color: var(--lime);
  font: 700 10px/1 var(--body);
  letter-spacing: 3.4px;
}

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

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -28px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.live-clock {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.live-clock > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.live-clock strong {
  color: var(--lime);
  font-size: 10px;
  letter-spacing: 1.2px;
}

.live-clock small {
  color: var(--muted);
  font: 600 10px var(--body);
}

.live-clock[data-state="error"] strong {
  color: var(--danger);
}

.live-clock[data-state="error"] .live-dot {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(255, 103, 93, 0.1);
}

.live-dot,
.ticker-label i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 240, 75, 0.1);
  animation: pulse 1.8s infinite;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--text);
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(217, 240, 75, 0);
  }
}

.hero {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  padding: 76px 20px 88px;
  border-bottom: 1px solid rgba(217, 240, 75, 0.1);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  position: absolute;
  width: 980px;
  height: 470px;
  border: 1px solid rgba(217, 240, 75, 0.08);
  border-radius: 50%;
  content: "";
  transform: translateY(48%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 115px;
  background-image: linear-gradient(90deg, transparent 49.8%, rgba(217, 240, 75, 0.09) 50%);
  background-size: 80px 100%;
  clip-path: polygon(0 100%, 9% 56%, 18% 80%, 27% 35%, 38% 72%, 50% 24%, 63% 68%, 73% 34%, 84% 78%, 93% 48%, 100% 100%);
  opacity: 0.6;
}

.hero-glow {
  position: absolute;
  top: -260px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 240, 75, 0.13), transparent 65%);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.8px;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--lime);
}

.hero h1 {
  margin: 0;
  font: 800 clamp(62px, 9vw, 130px)/0.78 var(--display);
  letter-spacing: -3px;
}

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

.hero-copy > p:last-child {
  max-width: 540px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-copy > p strong {
  color: var(--text);
}

.hero-stats {
  position: absolute;
  right: clamp(24px, 5vw, 90px);
  bottom: 48px;
  z-index: 2;
  display: flex;
  gap: 28px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-stats strong {
  font: 700 30px/1 var(--display);
}

.hero-stats span {
  color: var(--muted);
  font: 700 8px var(--body);
  letter-spacing: 1px;
}

.host-row {
  position: absolute;
  bottom: 49px;
  left: clamp(24px, 5vw, 90px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
}

.host-row b {
  margin-left: 3px;
  font-size: 9px;
  letter-spacing: 0.8px;
}

.host-row i {
  width: 18px;
  height: 1px;
  background: var(--line);
}

.ticker {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 48px;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 84px);
  border-bottom: 1px solid var(--line);
  background: var(--lime);
  color: var(--black);
  font-size: 10px;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

.ticker-label i {
  width: 6px;
  height: 6px;
  background: var(--black);
  box-shadow: none;
}

.ticker-viewport {
  overflow: hidden;
}

.ticker p {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.ticker p b {
  margin: 0 12px;
}

.ticker-time {
  padding-left: 20px;
  opacity: 0.6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.knockout-section,
.news-section {
  padding: 86px clamp(20px, 5vw, 84px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto 28px;
}

.section-heading h2,
.newsletter h2 {
  margin: 0;
  font: 800 clamp(42px, 5vw, 66px)/0.88 var(--display);
  letter-spacing: -1px;
}

.section-heading h2 span,
.newsletter h2 span {
  color: var(--lime);
}

.legend {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

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

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-dot.finished {
  background: var(--green);
}

.status-dot.live {
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 103, 93, 0.1);
  animation: pulse-live 1.2s infinite;
}

.status-dot.scheduled {
  background: var(--muted);
}

@keyframes pulse-live {
  50% {
    box-shadow: 0 0 0 7px rgba(255, 103, 93, 0);
  }
}

.round-tabs {
  display: none;
  gap: 8px;
  margin: 26px 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.round-tab,
.news-filter {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  transition: 160ms ease;
}

.round-tab:hover,
.round-tab.active,
.news-filter:hover,
.news-filter.active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--black);
}

.bracket-wrap {
  position: relative;
  max-width: 1440px;
  margin: auto;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 44px 44px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.bracket {
  display: grid;
  grid-template-columns: 1.18fr 1fr 0.92fr 1.08fr 0.92fr 1fr 1.18fr;
  min-width: 1210px;
  gap: 18px;
}

.bracket-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-around;
}

.column-heading {
  min-height: 42px;
  margin-bottom: 12px;
  text-align: center;
}

.column-heading strong {
  display: block;
  color: var(--lime);
  font: 800 18px var(--display);
  letter-spacing: 0.6px;
}

.column-heading small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.matches-stack {
  display: flex;
  min-height: 616px;
  flex: 1;
  flex-direction: column;
  justify-content: space-around;
  gap: 12px;
}

.match-card {
  position: relative;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(217, 240, 75, 0.25);
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(24, 52, 44, 0.94), rgba(9, 24, 20, 0.97));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: 180ms ease;
}

.match-card:hover,
.match-card:focus-visible {
  z-index: 2;
  border-color: var(--lime);
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.match-card.is-live {
  border-color: var(--danger);
  box-shadow: 0 0 0 1px rgba(255, 103, 93, 0.08), 0 14px 36px rgba(0, 0, 0, 0.26);
}

.match-card.is-live::before {
  position: absolute;
  top: -4px;
  right: 12px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--panel);
  border-radius: 50%;
  background: var(--danger);
  content: "";
  animation: pulse-live 1.2s infinite;
}

.match-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.match-number {
  color: var(--lime);
}

.team-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-height: 27px;
}

.team-row + .team-row {
  margin-top: 1px;
}

.flag {
  font-size: 17px;
  line-height: 1;
  filter: saturate(0.88);
}

.team-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.placeholder-flag {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 7px;
}

.team-name {
  overflow: hidden;
  font: 600 14px var(--display);
  letter-spacing: 0.25px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.score {
  min-width: 14px;
  color: var(--text);
  font: 800 17px var(--display);
  text-align: right;
}

.winner .team-name,
.winner .score {
  color: var(--lime);
}

.match-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.match-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--lime);
}

.match-state::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.match-state.live {
  color: var(--danger);
  font-weight: 800;
}

.bracket-column.final-column .matches-stack {
  justify-content: center;
}

.final-column .match-card {
  padding: 17px 14px;
  border-color: var(--gold);
  background:
    radial-gradient(circle at 50% 0, rgba(239, 181, 34, 0.16), transparent 55%),
    linear-gradient(145deg, rgba(27, 53, 45, 0.98), rgba(8, 22, 18, 0.99));
}

.final-column .column-heading strong,
.final-column .match-number,
.final-column .match-state {
  color: var(--gold);
}

.final-trophy {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 35px;
  text-align: center;
  filter: drop-shadow(0 5px 14px rgba(239, 181, 34, 0.22));
}

.bracket-note {
  max-width: 1440px;
  margin: 14px auto 0;
  color: #71847c;
  font-size: 9px;
  line-height: 1.5;
}

.bracket-note span {
  margin-right: 5px;
  color: var(--lime);
}

.news-section {
  color: var(--black);
  background: var(--paper);
}

.news-section .section-kicker {
  color: #6f7c18;
}

.news-section .section-heading h2 span {
  color: #78880f;
}

.news-filters {
  display: flex;
  gap: 8px;
}

.news-filter {
  border-color: rgba(8, 17, 14, 0.2);
  color: #4b554f;
}

.news-filter:hover,
.news-filter.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--text);
}

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

.news-card {
  display: flex;
  min-height: 245px;
  grid-column: span 3;
  flex-direction: column;
  padding: 22px;
  border-top: 1px solid rgba(8, 17, 14, 0.32);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 180ms ease;
}

.news-card:first-child {
  min-height: 510px;
  grid-column: span 6;
  grid-row: span 2;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 15, 11, 0.97) 100%),
    radial-gradient(circle at 70% 12%, rgba(217, 240, 75, 0.48), transparent 22%),
    linear-gradient(135deg, #39634f, #0c1e18 72%);
  color: var(--text);
}

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

.news-card[hidden] {
  display: none;
}

.news-tag {
  width: max-content;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 2px;
  background: var(--lime);
  color: var(--black);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  font: 700 clamp(23px, 2.2vw, 34px)/0.96 var(--display);
  letter-spacing: -0.25px;
  text-transform: uppercase;
}

.news-card:not(:first-child) h3 {
  font-size: 24px;
}

.news-summary {
  margin: 13px 0 0;
  color: #58615d;
  font-size: 11px;
  line-height: 1.55;
}

.news-card:first-child .news-summary {
  max-width: 500px;
  color: #c5d0ca;
  font-size: 12px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: #6c746f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.news-card:first-child .news-meta {
  color: #aab7b1;
}

.news-arrow {
  font-size: 17px;
}

.more-button {
  display: flex;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 0;
  padding: 17px 0;
  border: 0;
  border-top: 1px solid rgba(8, 17, 14, 0.25);
  border-bottom: 1px solid rgba(8, 17, 14, 0.25);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.more-button span {
  font-size: 20px;
}

.newsletter {
  position: relative;
  display: grid;
  align-items: end;
  padding: 70px clamp(20px, 8vw, 130px);
  grid-template-columns: 1fr minmax(320px, 0.75fr);
  gap: 60px;
  background: var(--lime);
  color: var(--black);
}

.newsletter .section-kicker {
  color: #657214;
}

.newsletter h2 {
  max-width: 680px;
}

.newsletter div > p:last-child {
  margin: 14px 0 0;
  font-size: 11px;
}

.newsletter form {
  display: flex;
  border-bottom: 2px solid var(--black);
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 16px 4px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-size: 13px;
}

.newsletter input::placeholder {
  color: rgba(8, 17, 14, 0.55);
}

.newsletter button {
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.newsletter button span {
  margin-left: 7px;
  font-size: 16px;
}

.form-feedback {
  position: absolute;
  right: clamp(20px, 8vw, 130px);
  bottom: 34px;
  margin: 0;
  font-size: 9px;
  font-weight: 700;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px clamp(20px, 5vw, 84px);
  color: var(--muted);
  font-size: 9px;
}

.footer-brand {
  transform: scale(0.86);
  transform-origin: left;
}

.match-dialog {
  width: min(92vw, 430px);
  padding: 32px;
  border: 1px solid rgba(217, 240, 75, 0.35);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.match-dialog::backdrop {
  background: rgba(0, 9, 7, 0.78);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 26px;
}

.dialog-kicker {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.match-dialog h2 {
  margin: 0 0 22px;
  font: 800 34px/1 var(--display);
  text-transform: uppercase;
}

.dialog-score {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-score .team-row {
  min-height: 40px;
  grid-template-columns: 32px 1fr auto;
}

.dialog-score .flag {
  font-size: 24px;
}

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

.dialog-score .team-name {
  font-size: 20px;
}

.dialog-score .score {
  font-size: 26px;
}

.dialog-meta {
  display: grid;
  margin-top: 20px;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.dialog-meta strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  border: 0;
  white-space: nowrap;
}

@media (max-width: 1150px) {
  .host-row {
    display: none;
  }

  .hero-stats {
    right: 50%;
    transform: translateX(50%);
  }

  .bracket-wrap {
    overflow-x: auto;
  }

  .news-card {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .live-clock {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(6, 17, 15, 0.98);
  }

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

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

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 490px;
    padding-top: 56px;
  }

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

  .hero-stats {
    bottom: 35px;
    gap: 30px;
  }

  .ticker {
    grid-template-columns: auto 1fr;
  }

  .ticker-time {
    display: none;
  }

  .ticker-viewport {
    mask-image: linear-gradient(90deg, #000 85%, transparent);
  }

  .knockout-section,
  .news-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .legend {
    display: none;
  }

  .round-tabs {
    display: flex;
  }

  .bracket-wrap {
    padding: 16px;
  }

  .bracket {
    display: block;
    min-width: 0;
  }

  .bracket-column {
    display: none;
  }

  .bracket[data-mobile-round="all"] .bracket-column {
    display: flex;
    margin-bottom: 22px;
  }

  .bracket[data-mobile-round="r16"] .bracket-column[data-round="r16"],
  .bracket[data-mobile-round="qf"] .bracket-column[data-round="qf"],
  .bracket[data-mobile-round="sf"] .bracket-column[data-round="sf"],
  .bracket[data-mobile-round="final"] .bracket-column[data-round="final"] {
    display: flex;
  }

  .matches-stack {
    min-height: 0;
    gap: 10px;
  }

  .match-card {
    padding: 14px;
  }

  .team-name {
    font-size: 17px;
  }

  .news-heading {
    margin-bottom: 26px;
  }

  .news-filters {
    width: 100%;
    overflow-x: auto;
  }

  .news-grid {
    display: block;
  }

  .news-card,
  .news-card:first-child {
    min-height: 260px;
    margin-bottom: 14px;
  }

  .news-card:first-child {
    min-height: 400px;
  }

  .news-card:not(:first-child) h3 {
    font-size: 27px;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-feedback {
    position: static;
    grid-column: 1;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
