.page-blog-latest-news {
  color: #333333; /* Dark text for light body background */
}

.page-blog-latest-news__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gold to Red gradient */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.page-blog-latest-news__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-news__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-news__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-blog-latest-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  opacity: 0.2;
}

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

.page-blog-latest-news__updates-grid {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.page-blog-latest-news__section-title {
  font-size: 2.2em;
  color: #8B0000; /* Deep Red */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-latest-news__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

.page-blog-latest-news__news-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-blog-latest-news__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

.page-blog-latest-news__card-title {
  font-size: 1.4em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-blog-latest-news__card-title a:hover {
  color: #FFD700; /* Gold */
}

.page-blog-latest-news__card-date {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
}

.page-blog-latest-news__card-excerpt {
  font-size: 1em;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-news__card-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  align-self: flex-start;
}

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

.page-blog-latest-news__in-depth-analysis {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

.page-blog-latest-news__content-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.page-blog-latest-news__article {
  line-height: 1.7;
  font-size: 1.05em;
}

.page-blog-latest-news__article-heading {
  font-size: 1.8em;
  color: #8B0000; /* Deep Red */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-latest-news__article p {
  margin-bottom: 20px;
}

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

.page-blog-latest-news__cta-section {
  background: linear-gradient(45deg, #8B0000, #FFD700); /* Red to Gold gradient */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  margin-top: 60px;
}

.page-blog-latest-news__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-news__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-blog-latest-news__cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #8B0000; /* Deep Red */
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-blog-latest-news__cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-4px);
}

.page-blog-latest-news__cta-button--secondary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
}

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

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

@media (max-width: 768px) {
  .page-blog-latest-news__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-latest-news__hero-title {
    font-size: 2em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-latest-news__grid-container {
    grid-template-columns: 1fr;
  }
  .page-blog-latest-news__news-card {
    margin-bottom: 20px;
  }
  .page-blog-latest-news__card-image {
    height: 200px;
  }
  .page-blog-latest-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__section-intro,
  .page-blog-latest-news__article p {
    font-size: 0.95em;
  }
  .page-blog-latest-news__article-heading {
    font-size: 1.6em;
  }
  .page-blog-latest-news__cta-section {
    padding: 60px 15px;
  }
  .page-blog-latest-news__cta-title {
    font-size: 2em;
  }
  .page-blog-latest-news__cta-description {
    font-size: 1.1em;
  }
  .page-blog-latest-news__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
    margin: 10px 0;
    width: 100%;
    max-width: 280px;
  }
  .page-blog-latest-news__cta-button + .page-blog-latest-news__cta-button {
    margin-top: 15px;
  }
  /* Mobile content image constraint */
  .page-blog-latest-news__updates-grid img,
  .page-blog-latest-news__in-depth-analysis img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-news__hero-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__section-title {
    font-size: 1.6em;
  }
  .page-blog-latest-news__news-card {
    margin-bottom: 15px;
  }
  .page-blog-latest-news__card-title {
    font-size: 1.2em;
  }
  .page-blog-latest-news__article-heading {
    font-size: 1.4em;
  }
  .page-blog-latest-news__cta-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}