.page-sports {
  background-color: #140C0C; /* Background color */
  color: #FFF1E8; /* Main text color */
  font-family: Arial, sans-serif; /* Example font */
  padding-top: 10px; /* Small top padding for the main content, body handles header offset */
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  display: flex; /* Use flex for image on top, content below */
  flex-direction: column; /* Stack image and content vertically */
  align-items: center; /* Center content horizontally */
}

.page-sports__hero-image-wrapper {
  width: 100%; /* Ensure image wrapper takes full width */
  max-width: 100%;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
}

.page-sports__hero-content {
  padding: 20px;
  text-align: center;
  max-width: 900px;
  margin-top: 20px; /* Space between image and text */
}

.page-sports__main-title {
  color: #FFF1E8;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
  /* No fixed font-size, rely on browser defaults and responsiveness */
  /* If absolutely needed, use clamp: font-size: clamp(2rem, 5vw, 3.5rem); */
}

.page-sports__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-top: 15px;
  color: rgba(255, 241, 232, 0.9);
}

.page-sports__hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-sports__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
  border: none;
  cursor: pointer;
  color: #FFF1E8; /* Text Main */
  min-height: 40px; /* Ensure button minimum height for touch targets */
}

.page-sports__button--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-sports__button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-sports__button--secondary {
  background-color: #C61F1F; /* Main color */
  border: 1px solid #E53030; /* Auxiliary color for border */
  box-shadow: 0 4px 15px rgba(198, 31, 31, 0.4);
}

.page-sports__button--secondary:hover {
  background-color: #E53030; /* Auxiliary color on hover */
  transform: translateY(-2px);
}

.page-sports__button--large {
  padding: 15px 30px;
  font-size: 1.1em;
  min-width: 200px;
}

.page-sports__section-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #F3C54D; /* Gold color for titles */
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFB04A, #D86A14);
  border-radius: 2px;
}

.page-sports__features-section,
.page-sports__categories-section,
.page-sports__news-section,
.page-sports__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-sports__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__feature-card {
  background-color: #2A1212; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E; /* Border color */
  transition: transform 0.3s ease;
}

.page-sports__feature-card:hover {
  transform: translateY(-5px);
}

.page-sports__feature-icon {
  width: 100%; /* Ensure icons take full width of their container */
  height: auto;
  max-width: 200px; /* Limit max width for visual balance */
  margin: 0 auto 20px;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
  border-radius: 8px; /* Slightly rounded corners for images */
}

.page-sports__feature-title {
  font-size: 1.5em;
  color: #FFF1E8;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-sports__feature-text {
  font-size: 1em;
  line-height: 1.5;
  color: rgba(255, 241, 232, 0.8);
}

.page-sports__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-sports__category-card {
  background-color: #2A1212; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #FFF1E8;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-sports__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sports__category-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-sports__category-title {
  font-size: 1.4em;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  color: #F3C54D; /* Gold color */
}

.page-sports__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__news-card {
  background-color: #2A1212; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-sports__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sports__news-image {
  width: 100%;
  height: 220px; /* Fixed height for news images */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-sports__news-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-sports__news-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-sports__news-title a {
  color: #FFF1E8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports__news-title a:hover {
  color: #F3C54D; /* Gold color on hover */
}

.page-sports__news-meta {
  font-size: 0.9em;
  color: rgba(255, 241, 232, 0.7);
  margin-bottom: 15px;
}

.page-sports__news-excerpt {
  font-size: 1em;
  line-height: 1.5;
  color: rgba(255, 241, 232, 0.8);
  flex-grow: 1;
}

.page-sports__cta-section {
  background-color: #2A1212; /* Card BG */
  text-align: center;
  border-radius: 12px;
  padding: 50px 20px;
  margin-top: 60px;
  border: 1px solid #6A1E1E; /* Border color */
}

.page-sports__cta-title {
  font-size: 2.2em;
  color: #F3C54D; /* Gold color */
  margin-bottom: 15px;
}

.page-sports__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255, 241, 232, 0.9);
}

.page-sports__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-sports__call-to-action {
  text-align: center;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-sports__main-title {
    /* Using clamp for h1 font-size as a fallback if needed, but primarily rely on responsive sizing */
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-sports__hero-description {
    font-size: 1em;
  }

  .page-sports__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-sports__button--large {
    width: 90%;
    max-width: 350px;
  }

  .page-sports__section-title {
    font-size: 1.8em;
  }

  .page-sports__features-grid,
  .page-sports__categories-grid,
  .page-sports__news-grid {
    grid-template-columns: 1fr; /* Stack cards vertically on small screens */
  }

  /* Ensure all images in content sections are responsive and do not overflow */
  .page-sports__hero-image,
  .page-sports__feature-icon,
  .page-sports__category-image,
  .page-sports__news-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Maintain minimum size even on mobile */
    min-height: 200px; /* Maintain minimum size even on mobile */
  }

  .page-sports__feature-icon,
  .page-sports__category-image,
  .page-sports__news-image {
    /* Ensure content images are not smaller than 200px */
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .page-sports__cta-title {
    font-size: 1.8em;
  }

  .page-sports__cta-description {
    font-size: 1em;
  }

  .page-sports__features-section,
  .page-sports__categories-section,
  .page-sports__news-section,
  .page-sports__cta-section {
    padding: 40px 15px;
  }
}