/* style/betting-news.css */
.page-betting-news {
  font-family: 'Arial', sans-serif;
  color: #1A2E44; /* Dark blue for main text */
  line-height: 1.6;
}

.page-betting-news__hero {
  background-color: #1A2E44; /* Dark blue background */
  color: #FFFFFF; /* White text for contrast */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-betting-news__hero-content {
  max-width: 800px;
}

.page-betting-news__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title highlight */
}

.page-betting-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-betting-news__hero-image-wrapper {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-betting-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-betting-news__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-betting-news__section:nth-of-type(odd) {
  background-color: #f8f8f8;
}

.page-betting-news__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-betting-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-betting-news__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #333;
}

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

.page-betting-news__content-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-news__content-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-betting-news__content-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-betting-news__item-title {
  font-size: 1.6em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-betting-news__item-text {
  font-size: 1em;
  color: #444;
}

.page-betting-news__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-betting-news__content-wrapper--reversed {
  flex-direction: column-reverse;
}

.page-betting-news__content-image--left, .page-betting-news__content-image--right {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-betting-news__content-text {
  max-width: 700px;
  text-align: left;
}

.page-betting-news__content-text .page-betting-news__item-title {
  margin-top: 25px;
  font-size: 1.8em;
}

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

.page-betting-news__detail-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.page-betting-news__detail-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-betting-news__detail-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-betting-news__detail-title a {
  color: #1A2E44;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-betting-news__detail-title a:hover {
  color: #FFD700;
}

.page-betting-news__detail-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-betting-news__cta-banner {
  background-color: #FFD700; /* Gold background for CTA */
  color: #1A2E44; /* Dark blue text for contrast */
  padding: 70px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-betting-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A2E44;
}

.page-betting-news__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Buttons */
.page-betting-news__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-betting-news__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #1A2E44; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-betting-news__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-betting-news__btn--secondary {
  background-color: #1A2E44; /* Dark blue background */
  color: #FFD700; /* Gold text */
  border: 2px solid #1A2E44;
}

.page-betting-news__btn--secondary:hover {
  background-color: #0d1e30; /* Slightly darker blue */
  border-color: #0d1e30;
  transform: translateY(-2px);
}

.page-betting-news__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #1A2E44;
  color: #FFD700;
  border: 1px solid #1A2E44;
}

.page-betting-news__btn--small:hover {
  background-color: #0d1e30;
  border-color: #0d1e30;
}

.page-betting-news__btn--large {
  padding: 15px 35px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-betting-news__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-betting-news__hero-content {
    max-width: 50%;
  }

  .page-betting-news__hero-image-wrapper {
    max-width: 45%;
  }

  .page-betting-news__hero-title {
    font-size: 3.5em;
  }

  .page-betting-news__hero-description {
    font-size: 1.3em;
  }

  .page-betting-news__content-wrapper {
    flex-direction: row;
    gap: 60px;
  }

  .page-betting-news__content-wrapper--reversed {
    flex-direction: row-reverse;
  }

  .page-betting-news__content-image--left, .page-betting-news__content-image--right {
    width: 45%;
  }

  .page-betting-news__content-text {
    max-width: 50%;
  }

  .page-betting-news__cta-title {
    font-size: 3.5em;
  }

  .page-betting-news__cta-description {
    font-size: 1.3em;
  }
}

@media (min-width: 1024px) {
  .page-betting-news__hero-title {
    font-size: 4em;
  }

  .page-betting-news__section-title {
    font-size: 3em;
  }
}