.football-hero {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(163, 230, 53, 0.15));
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}

.football-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.football-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.football-rail {
  position: sticky;
  top: 80px;
  align-self: start;
}

.football-rail-nav {
  list-style: none;
  border-left: 2px solid var(--primary);
  padding-left: 16px;
}

.football-rail-nav li {
  margin-bottom: 12px;
}

.football-rail-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.football-rail-nav a:hover {
  color: var(--primary);
}

.football-rail-img {
  margin-top: 24px;
  border-radius: 10px;
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.football-content h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--primary);
  margin: 36px 0 16px;
}

.football-content h2:first-of-type {
  margin-top: 0;
}

.football-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.football-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.football-mosaic img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.football-callout {
  background: rgba(244, 114, 182, 0.08);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
}

.football-callout p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text);
}

@media (max-width: 768px) {
  .football-body {
    grid-template-columns: 1fr;
    padding: 32px 16px 56px;
    overflow-x: hidden;
  }

  .football-rail {
    position: static;
    overflow: hidden;
    max-width: 100%;
  }

  .football-rail-img {
    max-height: 160px;
    object-fit: cover;
    width: 100%;
  }

  .football-mosaic {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .football-mosaic img {
    max-height: 160px;
    width: 100%;
  }
}
