.page-blog-latest-news {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-blog-latest-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0A192F; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
}

.page-blog-latest-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-latest-news__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay to ensure text readability */
  display: block;
}

.page-blog-latest-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-news__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog-latest-news__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-blog-latest-news__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-blog-latest-news__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-latest-news__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-blog-latest-news__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-blog-latest-news__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  position: relative;
}

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

.page-blog-latest-news__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-blog-latest-news__news-grid-section,
.page-blog-latest-news__why-stay-updated-section,
.page-blog-latest-news__how-to-stay-updated-section,
.page-blog-latest-news__responsible-gaming-section,
.page-blog-latest-news__call-to-action-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

.page-blog-latest-news__news-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-news__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-blog-latest-news__news-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

.page-blog-latest-news__news-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-latest-news__news-card-title {
  font-size: 1.4em;
  color: #0A192F;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-latest-news__news-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-news__news-card-title a:hover {
  color: #FFD700;
}

.page-blog-latest-news__news-card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-news__news-card-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-blog-latest-news__news-card-link:hover {
  color: #0A192F;
  text-decoration: underline;
}

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

.page-blog-latest-news__benefit-card {
  background-color: #f8f8f8;
  border-left: 5px solid #FFD700;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-blog-latest-news__benefit-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-news__benefit-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-blog-latest-news__benefit-text {
  color: #555555;
  font-size: 1em;
}

.page-blog-latest-news__update-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0;
}

.page-blog-latest-news__list-item {
  background-color: #ffffff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-size: 1.1em;
  color: #333333;
  border-left: 4px solid #0A192F;
}

.page-blog-latest-news__list-item strong {
  color: #0A192F;
}

.page-blog-latest-news__call-to-action-section {
  background-color: #0A192F;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin-bottom: 60px; /* Space before footer */
}

.page-blog-latest-news__call-to-action-section .page-blog-latest-news__section-title {
  color: #FFD700;
}

.page-blog-latest-news__call-to-action-section .page-blog-latest-news__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-latest-news__hero-title {
    font-size: 3em;
  }
  .page-blog-latest-news__news-card-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-news {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-blog-latest-news__hero-section {
    padding: 60px 15px;
  }
  .page-blog-latest-news__hero-title {
    font-size: 2.2em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-news__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-latest-news__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-blog-latest-news__section-title {
    font-size: 2em;
  }
  .page-blog-latest-news__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-blog-latest-news__news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-blog-latest-news__news-card-image {
    height: 200px;
  }
  .page-blog-latest-news__news-card-title {
    font-size: 1.2em;
  }
  .page-blog-latest-news__benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-blog-latest-news__benefit-card {
    padding: 25px;
  }
  .page-blog-latest-news__update-list {
    margin-top: 30px;
  }
  .page-blog-latest-news__list-item {
    font-size: 1em;
    padding: 18px 20px;
  }
  .page-blog-latest-news__call-to-action-section {
    padding: 60px 15px;
    margin-bottom: 40px;
  }
  /* Ensure all content images are responsive and do not overflow */
  .page-blog-latest-news img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-latest-news__news-card-image {
    width: 100%; /* Ensure card images take full width */
  }
}

@media (max-width: 480px) {
  .page-blog-latest-news__hero-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__news-card-title {
    font-size: 1.1em;
  }
  .page-blog-latest-news__news-card-text {
    font-size: 0.9em;
  }
}