/* style/sports.css */

/* Custom Colors */
:root {
  --page-sports-primary-color: #11A84E;
  --page-sports-secondary-color: #22C768;
  --page-sports-card-bg: #11271B;
  --page-sports-background: #08160F;
  --page-sports-text-main: #F2FFF6;
  --page-sports-text-secondary: #A7D9B8;
  --page-sports-border: #2E7A4E;
  --page-sports-glow: #57E38D;
  --page-sports-gold: #F2C14E;
  --page-sports-divider: #1E3A2A;
  --page-sports-deep-green: #0A4B2C;
  --page-sports-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-sports-text-main); /* Default text color for the page, light for dark background */
  background-color: var(--page-sports-background); /* Overall page background */
}

.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports__section-title {
  font-size: 2.5em;
  color: var(--page-sports-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__text-block {
  font-size: 1.1em;
  color: var(--page-sports-text-secondary);
  margin-bottom: 20px;
  text-align: center;
}

.page-sports__text-block a {
  color: var(--page-sports-gold);
  text-decoration: underline;
}

.page-sports__keyword {
  color: var(--page-sports-gold);
  font-weight: bold;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
}

.page-sports__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure it doesn't overflow */
  position: relative;
  margin-bottom: 30px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-sports__hero-title {
  color: var(--page-sports-gold);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  /* Using clamp for responsive font size, avoiding large fixed values */
  font-size: clamp(2.2em, 4vw, 3.5em);
}

.page-sports__hero-description {
  color: var(--page-sports-text-main);
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 20px;
}