.page-blog-latest-news {
  background-color: #FFFFFF;
  color: #333333;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

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

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

.page-blog-latest-news__hero-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

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

.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__featured-articles,
.page-blog-latest-news__news-categories,
.page-blog-latest-news__latest-articles,
.page-blog-latest-news__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-blog-latest-news__article-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  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: 300px;
  object-fit: cover;
  display: block;
}

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

.page-blog-latest-news__article-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #000000;
  font-weight: bold;
}

.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-date {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
}

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

.page-blog-latest-news__read-more {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

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

.page-blog-latest-news__category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-blog-latest-news__category-button {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #000000;
}

.page-blog-latest-news__category-button:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-blog-latest-news__articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.page-blog-latest-news__list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-news__list-image {
  width: 250px;
  height: 166px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.page-blog-latest-news__list-content {
  padding: 20px;
  flex-grow: 1;
}

.page-blog-latest-news__list-title {
  font-size: 1.5em;
  margin-bottom: 8px;
  color: #000000;
  font-weight: bold;
}

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

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

.page-blog-latest-news__list-date {
  font-size: 0.85em;
  color: #777777;
  margin-bottom: 10px;
}

.page-blog-latest-news__list-excerpt {
  font-size: 0.95em;
  color: #555555;
}

.page-blog-latest-news__view-all {
  text-align: center;
  margin-top: 50px;
}

.page-blog-latest-news__view-all-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #000000;
}

.page-blog-latest-news__view-all-button:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-blog-latest-news__cta-section {
  display: flex;
  align-items: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-top: 80px;
}

.page-blog-latest-news__cta-content {
  flex: 1;
  padding-right: 30px;
}

.page-blog-latest-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
  font-weight: bold;
}

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

.page-blog-latest-news__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

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

.page-blog-latest-news__cta-image {
  width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-latest-news__hero-title {
    font-size: 2.8em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1.1em;
  }
  .page-blog-latest-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-latest-news__list-item {
    flex-direction: column;
  }
  .page-blog-latest-news__list-image {
    width: 100%;
    height: 200px;
  }
  .page-blog-latest-news__cta-section {
    flex-direction: column;
    text-align: center;
  }
  .page-blog-latest-news__cta-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .page-blog-latest-news__cta-image {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-news {
    padding-top: var(--header-offset, 120px);
  }
  .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__section-title {
    font-size: 2em;
  }
  .page-blog-latest-news__featured-articles,
  .page-blog-latest-news__news-categories,
  .page-blog-latest-news__latest-articles,
  .page-blog-latest-news__cta-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-blog-latest-news__article-card {
    margin-bottom: 30px;
  }
  .page-blog-latest-news__article-image,
  .page-blog-latest-news__list-image {
    max-width: 100%;
    height: auto;
  }
  .page-blog-latest-news__article-title {
    font-size: 1.5em;
  }
  .page-blog-latest-news__list-title {
    font-size: 1.3em;
  }
  .page-blog-latest-news__cta-title {
    font-size: 2em;
  }
  .page-blog-latest-news__cta-description {
    font-size: 1em;
  }
  .page-blog-latest-news__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-blog-latest-news__list-item img, .page-blog-latest-news__article-card img, .page-blog-latest-news__cta-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-news__hero-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 0.9em;
  }
  .page-blog-latest-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-latest-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__article-title {
    font-size: 1.3em;
  }
  .page-blog-latest-news__list-title {
    font-size: 1.1em;
  }
  .page-blog-latest-news__category-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .page-blog-latest-news__cta-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__cta-description {
    font-size: 0.9em;
  }
  .page-blog-latest-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-latest-news__list-item {
    flex-direction: column;
  }
  .page-blog-latest-news__list-image {
    width: 100%;
    height: auto;
  }
}