.fixtures-hero {
  position: relative;
  min-height: 360px;
  padding: 110px 20px 70px;
  background-image: url("images/prem-2.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f4ecd8;
}

.fixtures-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.fixtures-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.fixtures-hero-content span {
  display: block;
  margin-bottom: 12px;
  color: #c49a2c;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.fixtures-hero-content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  text-transform: uppercase;
}

.fixtures-hero-content p {
  max-width: 700px;
  margin: 22px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
}

.fixtures-section {
  background: #f4ecd8;
  padding: 65px 20px 80px;
}

.fixtures-heading {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}

.fixtures-tag {
  display: block;
  margin-bottom: 12px;
  color: #c49a2c;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.fixtures-heading h2 {
  margin: 0 0 20px;
  color: #003f26;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
}

.fixtures-heading p {
  margin: 0;
  color: #333333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.7;
}

.fixture-week {
  max-width: 1100px;
  margin: 0 auto 50px;
}

.fixture-week-heading {
  padding: 25px 30px;
  background: #004b2d;
  color: #f4ecd8;
  text-align: center;
}

.fixture-week-heading span {
  display: block;
  margin-bottom: 7px;
  color: #c49a2c;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.fixture-week-heading h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
}

.fixture-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #c49a2c;
}

.fixture-card {
  display: grid;
  grid-template-columns: 180px 1fr 130px;
  align-items: center;
  min-height: 105px;
  padding: 18px 25px;
  background: #ffffff;
}

.fixture-date {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #555555;
  font-family: Georgia, "Times New Roman", serif;
}

.fixture-day {
  color: #003f26;
  font-family: inherit;
  font-weight: 700;
}

.fixture-match {
  display: grid;
  grid-template-columns: 1fr 55px 1fr;
  align-items: center;
  gap: 12px;
  color: #003f26;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
}

.fixture-team:first-child {
  text-align: right;
}

.fixture-team:last-child {
  text-align: left;
}

.fixture-versus {
  color: #c49a2c;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.fixture-time {
  color: #003f26;
  text-align: right;
  font-size: 1.1rem;
  font-weight: 700;
}

.live-fixture {
  border-left: 5px solid #c49a2c;
}

.fixture-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.live-badge {
  display: inline-block;
  padding: 6px 10px;
  background: #004b2d;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.fixtures-bottom {
  max-width: 850px;
  margin: 60px auto 0;
  text-align: center;
}

.fixtures-bottom h2 {
  margin: 0 0 18px;
  color: #003f26;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
}

.fixtures-bottom p {
  margin: 0 auto 28px;
  color: #333333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.7;
}

.fixtures-bottom a {
  display: inline-block;
  padding: 14px 28px;
  background: #004b2d;
  border: 2px solid #004b2d;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.fixtures-bottom a:hover {
  background: transparent;
  color: #004b2d;
}

@media (max-width: 750px) {
  .fixtures-hero {
    min-height: 320px;
    padding: 105px 18px 60px;
  }

  .fixtures-section {
    padding: 48px 15px 60px;
  }

  .fixture-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 18px;
    text-align: center;
  }

  .fixture-date {
    align-items: center;
  }

  .fixture-match {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fixture-team:first-child,
  .fixture-team:last-child {
    text-align: center;
  }

  .fixture-time {
    text-align: center;
  }

  .fixture-versus {
    display: block;
  }

  .fixture-time {
    align-items: center;
  }
}