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

.page-blog-latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-latest-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  padding: 80px 20px;
  background-color: #000000;
  overflow: hidden;
}

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

.page-blog-latest-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

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

.page-blog-latest-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-blog-latest-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-blog-latest-news__hero-cta {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-blog-latest-news__hero-cta:hover {
  background-color: #e0a53b;
}

.page-blog-latest-news__introduction-section,
.page-blog-latest-news__updates-section,
.page-blog-latest-news__games-section,
.page-blog-latest-news__promotions-section,
.page-blog-latest-news__responsible-gaming-section,
.page-blog-latest-news__get-started-section,
.page-blog-latest-news__conclusion-section {
  padding: 60px 0;
}

.page-blog-latest-news__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-latest-news__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-blog-latest-news__inline-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-blog-latest-news__inline-link:hover {
  text-decoration: underline;
}

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

.page-blog-latest-news__grid-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.page-blog-latest-news__grid-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-blog-latest-news__grid-title {
  font-size: 1.6em;
  color: #000000;
  margin: 0 20px 15px;
  font-weight: bold;
}

.page-blog-latest-news__grid-item .page-blog-latest-news__paragraph {
  font-size: 1em;
  padding: 0 20px;
  text-align: left;
  margin-bottom: 20px;
}

.page-blog-latest-news__button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-blog-latest-news__button:hover {
  background-color: #e0a53b;
}

.page-blog-latest-news__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-latest-news__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-blog-latest-news__cta-button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-blog-latest-news__cta-button--primary:hover {
  background-color: #e0a53b;
}

.page-blog-latest-news__cta-button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-blog-latest-news__cta-button--secondary:hover {
  background-color: #333333;
  border-color: #e0a53b;
}

.page-blog-latest-news__main-cta {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-blog-latest-news__main-cta:hover {
  background-color: #e0a53b;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-latest-news__hero-title {
    font-size: 3em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1.1em;
  }
  .page-blog-latest-news__section-title {
    font-size: 2em;
  }
  .page-blog-latest-news__grid-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-news__hero-section {
    padding: 60px 20px;
  }
  .page-blog-latest-news__hero-title {
    font-size: 2.5em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-news__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-latest-news__introduction-section,
  .page-blog-latest-news__updates-section,
  .page-blog-latest-news__games-section,
  .page-blog-latest-news__promotions-section,
  .page-blog-latest-news__responsible-gaming-section,
  .page-blog-latest-news__get-started-section,
  .page-blog-latest-news__conclusion-section {
    padding: 40px 0;
  }
  .page-blog-latest-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__paragraph {
    font-size: 0.95em;
  }
  .page-blog-latest-news__grid {
    grid-template-columns: 1fr;
  }
  .page-blog-latest-news__grid-image {
    height: 200px; /* Ensure images are not too small */
    max-width: 100%;
    height: auto;
  }
  .page-blog-latest-news__cta-group {
    flex-direction: column;
    align-items: center;
  }
  .page-blog-latest-news__cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-blog-latest-news__main-cta {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  /* Mobile content area image constraint */
  .page-blog-latest-news img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-latest-news__hero-section {
    padding-top: var(--header-offset, 120px);
  }
}

@media (max-width: 480px) {
  .page-blog-latest-news__hero-title {
    font-size: 2em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 0.9em;
  }
  .page-blog-latest-news__section-title {
    font-size: 1.5em;
  }
  .page-blog-latest-news__grid-title {
    font-size: 1.4em;
  }
}