.page-blog-latest-news {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  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;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 500px;
}

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

.page-blog-latest-news__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-latest-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.page-blog-latest-news__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-blog-latest-news__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  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;
}

.page-blog-latest-news__hero-cta-button:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-blog-latest-news__introduction,
.page-blog-latest-news__featured-articles,
.page-blog-latest-news__categories,
.page-blog-latest-news__recent-articles,
.page-blog-latest-news__why-stay-updated,
.page-blog-latest-news__call-to-action,
.page-blog-latest-news__faq-section {
  padding: 60px 0;
  background-color: #1A1A1A;
  margin-bottom: 20px; /* Separator between sections */
  border-radius: 8px;
}

.page-blog-latest-news__introduction {
  text-align: center;
}

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

.page-blog-latest-news__section-text {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 20px;
  text-align: justify;
}

.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: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

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

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

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

.page-blog-latest-news__article-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-blog-latest-news__article-title a:hover {
  text-decoration: underline;
}

.page-blog-latest-news__article-summary {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-blog-latest-news__read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

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

.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: #FFD700;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-blog-latest-news__category-button:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-3px);
}

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

.page-blog-latest-news__list-item {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

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

.page-blog-latest-news__list-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-blog-latest-news__list-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 8px;
}

.page-blog-latest-news__list-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-blog-latest-news__list-title a:hover {
  text-decoration: underline;
}

.page-blog-latest-news__list-summary {
  font-size: 0.9em;
  color: #b0b0b0;
  margin-bottom: 10px;
}

.page-blog-latest-news__list-date {
  font-size: 0.85em;
  color: #888888;
}

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

.page-blog-latest-news__view-all-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  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;
}

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

.page-blog-latest-news__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-blog-latest-news__benefit-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-blog-latest-news__call-to-action {
  text-align: center;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 80px 20px;
  border-radius: 8px;
}

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

.page-blog-latest-news__call-to-action .page-blog-latest-news__section-text {
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

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

.page-blog-latest-news__cta-button--primary {
  background-color: #1A1A1A;
  color: #FFD700;
  border: 2px solid #1A1A1A;
}

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

.page-blog-latest-news__cta-button--secondary {
  background-color: transparent;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}

.page-blog-latest-news__cta-button--secondary:hover {
  background-color: #1A1A1A;
  color: #FFD700;
}

.page-blog-latest-news__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-news__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-blog-latest-news__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.8;
  text-align: justify;
}

.page-blog-latest-news__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-blog-latest-news__faq-answer a:hover {
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-latest-news__hero-title {
    font-size: 2.8em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1.2em;
  }
  .page-blog-latest-news__section-title {
    font-size: 2.2em;
  }
  .page-blog-latest-news__list-item {
    flex-direction: column;
  }
  .page-blog-latest-news__list-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-news {
    padding-top: var(--header-offset, 80px);
  }
  .page-blog-latest-news__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-blog-latest-news__hero-content {
    padding: 30px;
  }
  .page-blog-latest-news__hero-title {
    font-size: 2.2em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-news__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-latest-news__introduction,
  .page-blog-latest-news__featured-articles,
  .page-blog-latest-news__categories,
  .page-blog-latest-news__recent-articles,
  .page-blog-latest-news__why-stay-updated,
  .page-blog-latest-news__call-to-action,
  .page-blog-latest-news__faq-section {
    padding: 40px 0;
  }
  .page-blog-latest-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__section-text {
    font-size: 0.95em;
  }
  .page-blog-latest-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-latest-news__article-image {
    height: 200px;
  }
  .page-blog-latest-news__article-title {
    font-size: 1.3em;
  }
  .page-blog-latest-news__list-item {
    flex-direction: column;
  }
  .page-blog-latest-news__list-image {
    width: 100%;
    height: 180px;
  }
  .page-blog-latest-news__list-content {
    padding: 15px;
  }
  .page-blog-latest-news__list-title {
    font-size: 1.1em;
  }
  .page-blog-latest-news__list-summary {
    font-size: 0.85em;
  }
  .page-blog-latest-news__category-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-blog-latest-news__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-blog-latest-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-latest-news__faq-question {
    font-size: 1.2em;
  }
  .page-blog-latest-news__faq-answer {
    font-size: 0.9em;
  }

  /* Critical: Ensure images don't overflow on mobile */
  .page-blog-latest-news img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-latest-news__articles-list .page-blog-latest-news__list-image {
    width: 100%;
    height: auto; /* Allow auto height for responsive scaling */
    min-height: 200px; /* Ensure minimum height for content images */
  }
  .page-blog-latest-news__article-card .page-blog-latest-news__article-image {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-news__hero-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__hero-content {
    padding: 20px;
  }
  .page-blog-latest-news__cta-buttons {
    flex-direction: column;
  }
  .page-blog-latest-news__cta-button {
    width: 100%;
  }
}