.page-blog-latest-news {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF; /* Light text for dark background */
  position: relative;
  overflow: hidden;
}

.page-blog-latest-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.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.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

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

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

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

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

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

.page-blog-latest-news__articles-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

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

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

.page-blog-latest-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-blog-latest-news__article-content {
  padding: 25px;
}

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

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

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

.page-blog-latest-news__article-excerpt {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

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

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

.page-blog-latest-news__promo-banner-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background for promo section */
  color: #FFFFFF; /* Light text for dark background */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-blog-latest-news__promo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}

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

.page-blog-latest-news__promo-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

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

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

.page-blog-latest-news__deep-content-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-blog-latest-news__deep-content-section h3 {
  font-size: 2em;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #000000;
}

.page-blog-latest-news__deep-content-section h4 {
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333333;
}

.page-blog-latest-news__deep-content-section p {
  margin-bottom: 20px;
  color: #444444;
}

.page-blog-latest-news__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF; /* Light text for dark background */
  text-align: center;
}

.page-blog-latest-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-latest-news__hero-title {
    font-size: 2.8em;
  }

  .page-blog-latest-news__section-title,
  .page-blog-latest-news__promo-title,
  .page-blog-latest-news__deep-content-title,
  .page-blog-latest-news__cta-title {
    font-size: 2.2em;
  }

  .page-blog-latest-news__deep-content-section h3 {
    font-size: 1.8em;
  }

  .page-blog-latest-news__deep-content-section h4 {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-news__hero-section {
    padding: 40px 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-actions,
  .page-blog-latest-news__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-news__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-blog-latest-news__articles-section,
  .page-blog-latest-news__promo-banner-section,
  .page-blog-latest-news__deep-content-section,
  .page-blog-latest-news__cta-section {
    padding: 50px 0;
  }

  .page-blog-latest-news__section-title,
  .page-blog-latest-news__promo-title,
  .page-blog-latest-news__deep-content-title,
  .page-blog-latest-news__cta-title {
    font-size: 1.8em;
  }

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

  .page-blog-latest-news__article-title {
    font-size: 1.3em;
  }

  .page-blog-latest-news__article-image,
  .page-blog-latest-news__deep-content-section img {
    max-width: 100%;
    height: auto;
  }

  .page-blog-latest-news__deep-content-section h3 {
    font-size: 1.5em;
  }

  .page-blog-latest-news__deep-content-section h4 {
    font-size: 1.2em;
  }

  /* Ensure all content area images are responsive and do not overflow */
  .page-blog-latest-news img {
    max-width: 100%;
    height: auto;
  }
}