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

.page-blog-latest-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for dark background */
  position: relative;
  overflow: hidden;
}

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

.page-blog-latest-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.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, color 0.3s ease;
  font-size: 1.1em;
}

.page-blog-latest-news__button--register {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-blog-latest-news__button--register:hover {
  background-color: #e0a73e;
  border-color: #e0a73e;
}

.page-blog-latest-news__button--explore {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-blog-latest-news__button--explore:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.page-blog-latest-news__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  z-index: 0;
}

.page-blog-latest-news__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-news__articles-section,
.page-blog-latest-news__featured-article-section,
.page-blog-latest-news__cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.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__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-latest-news__article-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-blog-latest-news__article-card img {
  width: 100%;
  height: 267px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-latest-news__article-title {
  font-size: 1.4em;
  padding: 15px;
  margin: 0;
}

.page-blog-latest-news__article-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-news__article-title a:hover {
  color: #FCBC45;
}

.page-blog-latest-news__article-excerpt {
  padding: 0 15px 15px;
  font-size: 0.95em;
  color: #555555;
}

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

.page-blog-latest-news__read-more:hover {
  background-color: #e0a73e;
}

.page-blog-latest-news__featured-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-blog-latest-news__featured-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-news__article-body h3 {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-latest-news__article-body p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-latest-news__article-body strong {
  color: #000000;
}

.page-blog-latest-news__button--cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 30px;
}

.page-blog-latest-news__button--cta:hover {
  background-color: #e0a73e;
  border-color: #e0a73e;
}

.page-blog-latest-news__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
}

.page-blog-latest-news__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-latest-news__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-blog-latest-news__button--primary:hover {
  background-color: #e0a73e;
  border-color: #e0a73e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-latest-news {
    padding-top: var(--header-offset, 120px); /* Keep for mobile */
  }

  .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%;
    max-width: 300px;
  }

  .page-blog-latest-news__section-title {
    font-size: 2em;
  }

  .page-blog-latest-news__articles-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-latest-news__article-card img,
  .page-blog-latest-news__featured-image {
    max-width: 100%;
    height: auto;
  }

  .page-blog-latest-news__article-body h3 {
    font-size: 1.5em;
  }

  .page-blog-latest-news__article-body p {
    font-size: 0.95em;
  }
}