/* ============================================================
   LEA RIVER FC — Design Tokens & Stylesheet
   Palermo-inspired rosanero palette: pink + black
   ============================================================ */

/* --- Tokens ------------------------------------------------ */
:root {
  /* Palette - derived from the club badge (#FE6C7F) */
  --rosa:        #FE6C7F;  /* badge pink: accent on dark, surfaces, never white text on it */
  --rosa-pale:   #FFF1F3;  /* pale tint for alt sections */
  --rosa-deep:   #C9304A;  /* AA-safe: links, buttons, text on light (5.1:1) */
  --rosa-hover:  #A82238;
  --nero:        #14141E;
  --nero-mid:    #20202E;
  --nero-soft:   #363648;
  --bianco:      #FFFBFC;
  --grigio:      #64646F;
  --grigio-line: #E6E1E3;
  --oro:         #B8934A;

  /* Typography */
  --ff-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --ff-body:    "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;

  --fs-xs:   0.8125rem;  /* 13 */
  --fs-sm:   0.875rem;   /* 14 */
  --fs-base: 1rem;       /* 16 */
  --fs-md:   1.125rem;   /* 18 */
  --fs-lg:   1.375rem;   /* 22 */
  --fs-xl:   1.75rem;    /* 28 */
  --fs-2xl:  2.25rem;    /* 36 */
  --fs-3xl:  3rem;       /* 48 */

  --fw-normal: 400;
  --fw-semi:   600;
  --fw-bold:   700;

  /* Spacing */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;

  /* Shadow */
  --shadow-card: 0 2px 8px rgba(24, 24, 36, 0.06);
  --shadow-nav:  0 1px 4px rgba(24, 24, 36, 0.08);

  /* Layout */
  --max-w: 72rem;  /* 1152px */
  --gutter: 1.25rem;
}

/* --- Reset & Base ------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@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;
  }
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: 1.6;
  color: var(--nero);
  background: var(--bianco);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--rosa-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover {
  color: var(--rosa-hover);
}

/* Focus ring — visible for keyboard, hidden for mouse */
:focus-visible {
  outline: 3px solid var(--rosa-deep);
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }

@media (min-width: 48rem) {
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-xl); }
}

/* --- Utilities --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

/* --- Site Header ------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nero);
  box-shadow: var(--shadow-nav);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
  gap: var(--sp-md);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__badge {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.site-logo__text {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: #fff;
  letter-spacing: 0.03em;
}
.site-logo__text span {
  color: var(--rosa);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-sm);
  color: #fff;
}
.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 48rem) {
  .nav-toggle { display: none; }
  .site-header__inner { height: 4rem; }
}

/* Nav */
.site-nav {
  display: none;
  position: absolute;
  top: 3.5rem;
  left: 0;
  right: 0;
  background: var(--nero);
  border-top: 1px solid var(--nero-soft);
  padding: var(--sp-md) 0;
}
.site-nav[data-open="true"] {
  display: block;
}

.site-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.site-nav__link {
  display: block;
  padding: var(--sp-sm) var(--gutter);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--ff-display);
  font-weight: var(--fw-semi);
  font-size: var(--fs-md);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--rosa);
}

@media (min-width: 48rem) {
  .site-nav {
    display: block;
    position: static;
    border: none;
    padding: 0;
    background: transparent;
  }
  .site-nav__list {
    flex-direction: row;
    gap: var(--sp-xs);
  }
  .site-nav__link {
    padding: var(--sp-sm) var(--sp-md);
    font-size: var(--fs-sm);
  }
}

/* --- Hero / Next Match ------------------------------------- */
.hero {
  background: var(--nero);
  color: #fff;
  padding: var(--sp-3xl) 0;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--ff-display);
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  color: var(--rosa);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.hero__matchup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.hero__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  min-width: 6rem;
}

.hero__crest {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
}

.hero__crest--home {
  background: transparent;
}
.hero__crest--home img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__crest--away {
  background: var(--nero-soft);
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--nero-soft);
}

.hero__team-name {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  letter-spacing: 0.02em;
}

.hero__vs {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  color: var(--rosa);
}

.hero__details {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-md);
  line-height: 1.8;
}

.hero__cta {
  display: inline-block;
  margin-top: var(--sp-xl);
  padding: var(--sp-sm) var(--sp-xl);
  background: var(--rosa-deep);
  color: #fff;
  text-decoration: none;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.hero__cta:hover {
  background: var(--rosa-hover);
  color: #fff;
}

@media (min-width: 48rem) {
  .hero { padding: var(--sp-4xl) 0; }
  .hero__crest { width: 5.5rem; height: 5.5rem; font-size: var(--fs-xl); }
  .hero__team-name { font-size: var(--fs-xl); }
  .hero__vs { font-size: var(--fs-2xl); }
  .hero__matchup { gap: var(--sp-2xl); }
}

/* --- Section Shared ---------------------------------------- */
.section {
  padding: var(--sp-2xl) 0;
}
.section--alt {
  background: var(--rosa-pale);
}
.section--dark {
  background: var(--nero);
  color: #fff;
}
.section--dark a {
  color: var(--rosa);
}

.section__heading {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-sm);
  border-bottom: 3px solid var(--rosa);
  display: inline-block;
}
.section--dark .section__heading {
  border-color: var(--rosa);
}

.section__more {
  display: inline-block;
  margin-top: var(--sp-lg);
  font-family: var(--ff-display);
  font-weight: var(--fw-semi);
  font-size: var(--fs-base);
  color: var(--rosa-deep);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}
.section__more:hover {
  border-color: var(--rosa-deep);
}
.section--dark .section__more {
  color: var(--rosa);
}
.section--dark .section__more:hover {
  border-color: var(--rosa);
}

/* --- News Cards -------------------------------------------- */
.news-grid {
  display: grid;
  gap: var(--sp-lg);
}

@media (min-width: 36rem) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 62rem) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}
.news-card:hover {
  box-shadow: 0 4px 16px rgba(24, 24, 36, 0.1);
}

.news-card__img {
  aspect-ratio: 16 / 10;
  background: var(--grigio-line);
  overflow: hidden;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder pattern for missing images */
.news-card__img--placeholder {
  background: linear-gradient(135deg, var(--rosa-pale) 0%, var(--grigio-line) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa);
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
}

.news-card__body {
  padding: var(--sp-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__date {
  font-size: var(--fs-xs);
  color: var(--grigio);
  margin-bottom: var(--sp-sm);
}

.news-card__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  line-height: 1.25;
  margin-bottom: var(--sp-sm);
}
.news-card__title a {
  color: inherit;
  text-decoration: none;
}
.news-card__title a:hover {
  color: var(--rosa-deep);
}

.news-card__excerpt {
  color: var(--grigio);
  font-size: var(--fs-sm);
  line-height: 1.6;
  flex: 1;
}

/* --- Homepage Split Layout --------------------------------- */
.home-split {
  display: grid;
  gap: var(--sp-2xl);
}
@media (min-width: 62rem) {
  .home-split {
    grid-template-columns: 2fr 1fr;
    gap: var(--sp-3xl);
  }
}

/* --- Fixtures & Results Strip ------------------------------ */
.fixture-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--grigio-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.fixture-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-lg);
  background: #fff;
  text-align: center;
}

.fixture-item__home {
  text-align: right;
  font-family: var(--ff-display);
  font-weight: var(--fw-semi);
  font-size: var(--fs-base);
}
.fixture-item__away {
  text-align: left;
  font-family: var(--ff-display);
  font-weight: var(--fw-semi);
  font-size: var(--fs-base);
}

.fixture-item__score {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  background: var(--nero);
  color: #fff;
  padding: var(--sp-xs) var(--sp-sm);
  border-radius: var(--radius-sm);
  min-width: 3.5rem;
  letter-spacing: 0.05em;
}

.fixture-item__score--upcoming {
  background: transparent;
  color: var(--grigio);
  font-size: var(--fs-base);
  min-width: 1.5rem;
  padding: 0;
}

.fixture-item__meta {
  grid-column: 1 / -1;
  font-size: var(--fs-xs);
  color: var(--grigio);
  text-align: center;
  padding-top: var(--sp-xs);
}

/* Win / Loss / Draw indicators */
.fixture-item--win .fixture-item__score { background: #16a34a; }
.fixture-item--loss .fixture-item__score { background: var(--nero); }
.fixture-item--draw .fixture-item__score { background: var(--oro); color: var(--nero); }

/* --- About Section / Intro --------------------------------- */
.about-intro {
  display: grid;
  gap: var(--sp-xl);
  align-items: center;
}
@media (min-width: 48rem) {
  .about-intro { grid-template-columns: 1fr 1fr; gap: var(--sp-3xl); }
}

.about-intro__text p {
  margin-bottom: var(--sp-md);
  max-width: 40rem;
  line-height: 1.7;
}

.about-intro__img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--nero-mid) 0%, var(--nero) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro__img-placeholder {
  color: var(--rosa);
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  text-align: center;
  padding: var(--sp-xl);
  line-height: 1.4;
}

/* --- Club Info Cards --------------------------------------- */
.info-cards {
  display: grid;
  gap: var(--sp-lg);
}
@media (min-width: 36rem) {
  .info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 62rem) {
  .info-cards { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  padding: var(--sp-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--grigio-line);
  background: #fff;
}

.info-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--rosa-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  color: var(--rosa-deep);
}

.info-card__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-sm);
}

.info-card__text {
  color: var(--grigio);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* --- Page Header (inner pages) ----------------------------- */
.page-header {
  background: var(--nero);
  color: #fff;
  padding: var(--sp-2xl) 0;
}
.page-header h1 {
  border-bottom: 3px solid var(--rosa);
  display: inline-block;
  padding-bottom: var(--sp-xs);
}

/* --- Contact Form ------------------------------------------ */
.contact-layout {
  display: grid;
  gap: var(--sp-2xl);
}
@media (min-width: 48rem) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

.form-group {
  margin-bottom: var(--sp-lg);
}

.form-group label {
  display: block;
  font-family: var(--ff-display);
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-xs);
  color: var(--nero);
}

.form-group input,
.form-group textarea,
.form-group select {
  display: block;
  width: 100%;
  padding: var(--sp-sm) var(--sp-md);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  border: 1px solid var(--grigio-line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--nero);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rosa-deep);
  box-shadow: 0 0 0 3px rgba(201, 81, 110, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.btn {
  display: inline-block;
  padding: var(--sp-sm) var(--sp-xl);
  background: var(--rosa-deep);
  color: #fff;
  border: none;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn:hover {
  background: var(--rosa-hover);
  color: #fff;
}

/* --- Footer ------------------------------------------------ */
.site-footer {
  background: var(--nero);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-2xl) 0 var(--sp-xl);
}

.footer-grid {
  display: grid;
  gap: var(--sp-xl);
}
@media (min-width: 48rem) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-col__heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--rosa);
  margin-bottom: var(--sp-md);
  letter-spacing: 0.02em;
}

.footer-col p {
  margin-bottom: var(--sp-sm);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--rosa);
}

.footer-links {
  list-style: none;
}
.footer-links li + li {
  margin-top: var(--sp-sm);
}
.footer-links a {
  font-size: var(--fs-sm);
}

.social-links {
  list-style: none;
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--nero-soft);
  border-radius: 50%;
  color: #fff;
  transition: background 0.15s;
}
.social-links a:hover {
  background: var(--rosa-deep);
}
.social-links svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-bottom {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--nero-soft);
  font-size: var(--fs-xs);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-sm);
}

/* --- Full Fixtures Page ------------------------------------ */
.fixtures-page-grid {
  display: grid;
  gap: var(--sp-2xl);
}
@media (min-width: 62rem) {
  .fixtures-page-grid { grid-template-columns: 1fr 1fr; }
}

.fixture-section-title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-md);
  color: var(--nero);
}

/* --- Club Page --------------------------------------------- */
.prose {
  max-width: 40rem;
}
.prose p + p {
  margin-top: var(--sp-md);
}
.prose h3 {
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

/* --- Placeholder / TBD Labels ------------------------------ */
.placeholder-label {
  display: inline-block;
  background: var(--oro);
  color: var(--nero);
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* --- News Detail (for future) ------------------------------ */
.news-detail {
  max-width: 40rem;
  margin: 0 auto;
}
.news-detail__date {
  color: var(--grigio);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-lg);
}

/* --- Skip link --------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-md);
  background: var(--rosa-deep);
  color: #fff;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-sm);
  z-index: 200;
  font-weight: var(--fw-semi);
  text-decoration: none;
}
.skip-link:focus {
  top: var(--sp-sm);
}

/* --- Print ------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero__cta { display: none; }
  body { color: #000; background: #fff; }
}


/* ============================================================
   Fixture list — real season data
   ============================================================ */

.fixture-item {
  grid-template-columns: 1fr auto 1fr;
  row-gap: var(--sp-xs);
}

/* Home / away indicator sits beside the club name */
.fixture-item__ha {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  text-align: center;
  border-radius: 3px;
  vertical-align: middle;
  margin-inline: 0.25rem;
}
.fixture-item__ha--h {
  background: var(--rosa);
  color: var(--nero);
}
.fixture-item__ha--a {
  background: var(--grigio-line);
  color: var(--nero);
}

/* Month grouping heading inside a fixture list */
.fixture-month {
  background: var(--nero);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-xs) var(--sp-lg);
}

/* Date column for the full fixtures page */
.fixture-item__date {
  grid-column: 1 / -1;
  font-family: var(--ff-display);
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  color: var(--rosa-deep);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Highlight the very next fixture */
.fixture-item--next {
  background: var(--rosa-pale);
  box-shadow: inset 3px 0 0 var(--rosa-deep);
}

/* Empty state — used until the first result comes in */
.empty-state {
  background: var(--rosa-pale);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  text-align: center;
  color: var(--grigio);
}
.empty-state__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--nero);
  margin-bottom: var(--sp-xs);
}

/* Countdown to next match */
.hero__countdown {
  display: inline-flex;
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
  padding: var(--sp-md) var(--sp-xl);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}
.hero__countdown-unit {
  text-align: center;
  min-width: 3rem;
}
.hero__countdown-num {
  display: block;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  color: var(--rosa);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.hero__countdown-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

/* Season summary strip */
.season-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--grigio-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-xl);
}
@media (min-width: 36rem) {
  .season-strip { grid-template-columns: repeat(4, 1fr); }
}
.season-stat {
  background: #fff;
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
}
.season-stat__num {
  display: block;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-2xl);
  color: var(--nero);
  line-height: 1;
}
.season-stat__label {
  font-size: var(--fs-xs);
  color: var(--grigio);
  letter-spacing: 0.03em;
}

/* Club badge shown large on the club page */
.club-badge-display {
  display: block;
  width: 100%;
  max-width: 16rem;
  margin: 0 auto;
}

/* Team names in fixture rows stay on one line */
.fixture-item__home,
.fixture-item__away {
  text-wrap: balance;
  hyphens: none;
}
.fixture-item__home > .fixture-item__ha,
.fixture-item__away > .fixture-item__ha {
  white-space: nowrap;
}
