/* style/resources-latest-football-betting-news.css */
.page-resources-latest-football-betting-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css #0a0a0a */
}

.page-resources-latest-football-betting-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-latest-football-betting-news__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-latest-football-betting-news__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-resources-latest-football-betting-news__hero-section {
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, rgba(38, 169, 224, 0.8), rgba(10, 10, 10, 0.8)), url('[GALLERY:hero_main:1920x1080:football,betting,news,stadium]');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
}

.page-resources-latest-football-betting-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-latest-football-betting-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-latest-football-betting-news__hero-image-wrapper {
  margin-bottom: 30px;
}

.page-resources-latest-football-betting-news__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-football-betting-news__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-resources-latest-football-betting-news__btn-primary,
.page-resources-latest-football-betting-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-football-betting-news__btn-primary {
  background-color: #EA7C07; /* Login/Action color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-latest-football-betting-news__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-resources-latest-football-betting-news__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-latest-football-betting-news__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Latest News Section */
.page-resources-latest-football-betting-news__latest-news-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
}

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

.page-resources-latest-football-betting-news__news-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-resources-latest-football-betting-news__news-card:hover {
  transform: translateY(-5px);
}

.page-resources-latest-football-betting-news__news-card-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
}

.page-resources-latest-football-betting-news__news-card-content {
  padding: 20px;
}

.page-resources-latest-football-betting-news__news-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-latest-football-betting-news__news-card-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-latest-football-betting-news__news-card-link:hover {
  text-decoration: underline;
}

.page-resources-latest-football-betting-news__news-card-text {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-resources-latest-football-betting-news__read-more-link {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-latest-football-betting-news__read-more-link:hover {
  text-decoration: underline;
}

/* Analysis Section */
.page-resources-latest-football-betting-news__analysis-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-resources-latest-football-betting-news__analysis-list {
  display: grid;
  gap: 25px;
}

.page-resources-latest-football-betting-news__analysis-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.page-resources-latest-football-betting-news__analysis-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-resources-latest-football-betting-news__analysis-item-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-resources-latest-football-betting-news__analysis-item-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-latest-football-betting-news__analysis-item-link:hover {
  text-decoration: underline;
}

.page-resources-latest-football-betting-news__analysis-item-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* Tech Trends Section */
.page-resources-latest-football-betting-news__tech-trends-section {
  padding: 60px 0;
  background-color: rgba(38, 169, 224, 0.1); /* Semi-transparent brand color for dark background */
}

.page-resources-latest-football-betting-news__tech-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-resources-latest-football-betting-news__tech-text {
  flex: 1;
  min-width: 300px;
}

.page-resources-latest-football-betting-news__tech-subtitle {
  font-size: 1.5em;
  color: #26A9E0;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-resources-latest-football-betting-news__tech-paragraph {
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-resources-latest-football-betting-news__tech-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Advantages Section */
.page-resources-latest-football-betting-news__advantages-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-resources-latest-football-betting-news__advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-resources-latest-football-betting-news__advantage-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.page-resources-latest-football-betting-news__advantage-item:hover {
  transform: translateY(-5px);
}

.page-resources-latest-football-betting-news__advantage-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-latest-football-betting-news__advantage-text {
  color: #e0e0e0;
}

.page-resources-latest-football-betting-news__advantages-cta {
  text-align: center;
}

/* FAQ Section */
.page-resources-latest-football-betting-news__faq-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-latest-football-betting-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-latest-football-betting-news__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-latest-football-betting-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  color: #26A9E0;
  background-color: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.page-resources-latest-football-betting-news__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-latest-football-betting-news__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-resources-latest-football-betting-news__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  margin-left: 15px;
  color: #ffffff;
}

.page-resources-latest-football-betting-news__faq-item[open] .page-resources-latest-football-betting-news__faq-question {
  border-bottom: none;
}

.page-resources-latest-football-betting-news__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #e0e0e0;
}

/* Final CTA Section */
.page-resources-latest-football-betting-news__cta-final-section {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
}

.page-resources-latest-football-betting-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-resources-latest-football-betting-news__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Global image responsiveness */
.page-resources-latest-football-betting-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-resources-latest-football-betting-news {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-latest-football-betting-news__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

  .page-resources-latest-football-betting-news__hero-title {
    font-size: 2.2em;
  }

  .page-resources-latest-football-betting-news__hero-description,
  .page-resources-latest-football-betting-news__section-description {
    font-size: 1em;
  }

  .page-resources-latest-football-betting-news__section-title {
    font-size: 1.8em;
  }

  .page-resources-latest-football-betting-news__container {
    padding: 0 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-latest-football-betting-news__news-grid,
  .page-resources-latest-football-betting-news__advantages-list {
    grid-template-columns: 1fr;
  }

  .page-resources-latest-football-betting-news__tech-content {
    flex-direction: column;
  }

  .page-resources-latest-football-betting-news__tech-image {
    max-width: 100%;
    width: 100%;
  }

  /* Force image responsiveness */
  .page-resources-latest-football-betting-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Force button responsiveness */
  .page-resources-latest-football-betting-news__btn-primary,
  .page-resources-latest-football-betting-news__btn-secondary,
  .page-resources-latest-football-betting-news a[class*="button"],
  .page-resources-latest-football-betting-news a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-resources-latest-football-betting-news__hero-cta-buttons,
  .page-resources-latest-football-betting-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-latest-football-betting-news__news-card,
  .page-resources-latest-football-betting-news__advantage-item,
  .page-resources-latest-football-betting-news__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}