.page-resources-latest-football-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--dark-bg-1);
}

.page-resources-latest-football-news__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

.page-resources-latest-football-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure spacing from fixed header */
  position: relative;
  overflow: hidden;
}

.page-resources-latest-football-news__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  margin-bottom: 30px;
}

.page-resources-latest-football-news__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-latest-football-news__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-latest-football-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-resources-latest-football-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-latest-football-news__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
  color: #f0f0f0;
}

.page-resources-latest-football-news__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-latest-football-news__section-title--light {
  color: #ffffff;
}

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

.page-resources-latest-football-news__paragraph {
  font-size: 1.05em;
  margin-bottom: 25px;
  text-align: justify;
  color: #e0e0e0;
}

.page-resources-latest-football-news__paragraph--light {
  color: #ffffff;
}

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

.page-resources-latest-football-news__cta-buttons--center {
  margin-top: 40px;
}

.page-resources-latest-football-news__btn-primary,
.page-resources-latest-football-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.05em;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-latest-football-news__btn-primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

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

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

.page-resources-latest-football-news__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

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

.page-resources-latest-football-news__article-card {
  background-color: #1a3a70; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-latest-football-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.page-resources-latest-football-news__article-title {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-resources-latest-football-news__article-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-latest-football-news__article-link:hover {
  color: #ffffff;
}

.page-resources-latest-football-news__article-excerpt {
  padding: 0 20px 15px;
  color: #e0e0e0;
  flex-grow: 1;
}

.page-resources-latest-football-news__read-more-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-resources-latest-football-news__read-more-btn:hover {
  background-color: #e6c200;
}

.page-resources-latest-football-news__video-section {
  padding: 80px 20px;
  text-align: center;
}

.page-resources-latest-football-news__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-football-news__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-resources-latest-football-news__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

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

.page-resources-latest-football-news__feature-item {
  background-color: #1a3a70;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-football-news__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-latest-football-news__feature-description {
  color: #e0e0e0;
  font-size: 1em;
}

.page-resources-latest-football-news__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-football-news__faq-item {
  background-color: #1a3a70;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-football-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A2463;
  color: #ffffff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-latest-football-news__faq-question:hover {
  background-color: #1a3a70;
}

.page-resources-latest-football-news__faq-title {
  font-size: 1.15em;
  margin: 0;
  color: #ffffff;
}

.page-resources-latest-football-news__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-resources-latest-football-news__faq-item.active .page-resources-latest-football-news__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-latest-football-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #1a3a70;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-latest-football-football-news__faq-item.active .page-resources-latest-football-news__faq-answer {
  max-height: 1000px !important;
  padding: 15px 25px;
}

.page-resources-latest-football-news__cta-section {
  background-color: #FFD700;
  padding: 80px 20px;
  text-align: center;
  color: #0A2463;
}

.page-resources-latest-football-news__cta-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-resources-latest-football-news__cta-description {
  font-size: 1.2em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-latest-football-news__hero-title {
    font-size: 2.5em;
  }
  .page-resources-latest-football-news__section-title {
    font-size: 2em;
  }
  .page-resources-latest-football-news__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-football-news__hero-section {
    flex-direction: column;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure spacing from fixed header on mobile */
  }
  .page-resources-latest-football-news__hero-content {
    margin-bottom: 20px;
  }
  .page-resources-latest-football-news__hero-title {
    font-size: 2em;
  }
  .page-resources-latest-football-news__hero-description {
    font-size: 1em;
  }
  .page-resources-latest-football-news__content-area {
    padding: 40px 15px;
  }
  .page-resources-latest-football-news__section-title {
    font-size: 1.8em;
  }
  .page-resources-latest-football-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-latest-football-news__video-section {
    padding: 60px 15px;
  }
  .page-resources-latest-football-news__feature-list {
    grid-template-columns: 1fr;
  }
  .page-resources-latest-football-news__cta-section {
    padding: 60px 15px;
  }
  .page-resources-latest-football-news__cta-title {
    font-size: 1.8em;
  }
  .page-resources-latest-football-news__cta-description {
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-resources-latest-football-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Content area image sizing */
  .page-resources-latest-football-news__articles-grid img,
  .page-resources-latest-football-news__article-image {
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important; /* Ensure minimum size */
    object-fit: cover;
  }

  /* Mobile video responsiveness */
  .page-resources-latest-football-news video,
  .page-resources-latest-football-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-latest-football-news__video-section,
  .page-resources-latest-football-news__video-container,
  .page-resources-latest-football-news__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-resources-latest-football-news__cta-button,
  .page-resources-latest-football-news__btn-primary,
  .page-resources-latest-football-news__btn-secondary,
  .page-resources-latest-football-news a[class*="button"],
  .page-resources-latest-football-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;
    padding-right: 15px;
  }
  .page-resources-latest-football-news__cta-buttons,
  .page-resources-latest-football-news__button-group,
  .page-resources-latest-football-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-resources-latest-football-news__faq-question {
    padding: 15px 20px;
  }
  .page-resources-latest-football-news__faq-title {
    font-size: 1em;
  }
  .page-resources-latest-football-news__faq-answer {
    padding: 0 20px;
  }
  .page-resources-latest-football-football-news__faq-item.active .page-resources-latest-football-news__faq-answer {
    padding: 10px 20px;
  }
}