.sports-hero {
  position: relative;
  min-height: 330px;
  background-image: url("images/football.jpg");
  background-size: cover;
  background-position: center 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px;
  text-align: center;
  color: #f4ecd8;
}

.sports-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.sports-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.sports-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.sports-hero p {
  margin: 28px auto 0;
  max-width: 850px;
  font-size: clamp(1.2rem, 2.7vw, 2.1rem);
  line-height: 1.4;
  font-family: Georgia, "Times New Roman", serif;
}

.sports-intro {
  background: #f4ecd8;
  color: #1b1b1b;
  text-align: center;
  padding: 55px 20px 70px;
}

.sports-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
}

.sports-intro__line {
  width: min(620px, 70%);
  height: 1px;
  background: #c49a2c;
  margin: 28px auto;
}

.sports-intro p {
  max-width: 980px;
  margin: 0 auto 32px;
  font-size: clamp(1.2rem, 2.3vw, 2rem);
  line-height: 1.55;
  font-family: Georgia, "Times New Roman", serif;
}

.sports-intro p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .sports-hero {
    min-height: 340px;
    padding: 100px 18px 65px;
  }

  .sports-hero h1 {
    letter-spacing: 1px;
  }

  .sports-hero p {
    margin-top: 18px;
  }

  .sports-intro {
    padding: 42px 18px 55px;
  }

  .sports-intro__line {
    width: 85%;
    margin: 22px auto;
  }

  .sports-intro p {
    margin-bottom: 24px;
  }
}

.world-cup-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    max-width: 1400px;
    margin: 60px auto;
    background: #004b2d;
    color: #f4ecd8;
}

.world-cup-content {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.world-cup-content h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 300;
}

.world-cup-lead {
    max-width: 700px;
    margin: 0 auto 28px;
    font-size: 1.15rem;
    line-height: 1.6;
    font-family: Georgia, serif;
}

.world-cup-content h3 {
    margin-bottom: 22px;
    color: #c49a2c;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 400;
}

.world-cup-content ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px;
}

.world-cup-content li {
    margin-bottom: 14px;
    font-size: 1.15rem;
    font-family: Georgia, serif;
}

.world-cup-content p:last-child {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: Georgia, serif;
}

.world-cup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {

    .world-cup-section {
        grid-template-columns: 1fr;
        margin: 40px 0;
    }

    .world-cup-content {
        padding: 35px 22px;
    }

    .world-cup-image {
        height: 420px;
    }
}

.other-sports-section {
  background: #004b2d;
  color: #f4ecd8;
  padding: 55px 20px 75px;
}

.other-sports-inner {
  max-width: 1380px;
  margin: 0 auto;
  text-align: center;
}

.other-sports-inner h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 300;
}

.other-sports-lead,
.other-sports-subtext {
  max-width: 1000px;
  margin: 0 auto 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
  font-weight: 600;
}

.other-sports-subtext {
  max-width: 850px;
  margin-bottom: 38px;
  font-weight: 400;
}

.other-sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sport-tile {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #003f26;
}

.sport-tile img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.sport-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0.05)
  );
}

.sport-tile-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px 20px;
  text-align: left;
}

.sport-tile-text h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  font-weight: 400;
  color: #f4ecd8;
}

.sport-tile-text p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.45;
}

.sport-tile:hover img {
  transform: scale(1.05);
}

@media (max-width: 1000px) {
  .other-sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sport-tile,
  .sport-tile img {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .other-sports-section {
    padding: 42px 16px 55px;
  }

  .other-sports-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sport-tile,
  .sport-tile img {
    min-height: 260px;
  }

  .sport-tile-text {
    padding: 20px 18px;
  }
}

.matchday-section {
    background: #f4ecd8;
    padding: 70px 20px;
}

.matchday-content {
    max-width: 1250px;
    margin: auto;
    text-align: center;
}

.matchday-tag {
    display: inline-block;
    color: #c49a2c;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .9rem;
    margin-bottom: 14px;
}

.matchday-content h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    color: #003f26;
    margin-bottom: 24px;
}

.matchday-intro,
.matchday-ending {
    max-width: 850px;
    margin: auto;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #222;
}

.matchday-intro {
    margin-bottom: 50px;
}

.matchday-ending {
    margin-top: 45px;
}

.matchday-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.feature {
    background: white;
    padding: 35px;
    border-top: 4px solid #c49a2c;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.feature h3 {
    margin-bottom: 14px;
    color: #003f26;
    font-size: 1.5rem;
    font-weight: 400;
}

.feature p {
    margin: 0;
    font-family: Georgia, serif;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 800px) {

    .matchday-features {
        grid-template-columns: 1fr;
    }

    .matchday-section {
        padding: 50px 18px;
    }

    .feature {
        padding: 28px;
    }
}