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

.page-blog-latest-news__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000080; /* Auxiliary color for contrast */
  color: #ffffff;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-blog-latest-news__hero-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.page-blog-latest-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7; /* Slightly dim the image to make text pop */
  object-fit: cover;
}

.page-blog-latest-news__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  z-index: 10;
  padding: 25px;
  background: rgba(0, 0, 128, 0.7); /* Semi-transparent background for text readability */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-news__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Main brand color */
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-weight: 700;
}

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

.page-blog-latest-news__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color */
  color: #000080; /* Auxiliary color for button text */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: 2px solid transparent;
}

.page-blog-latest-news__hero-button:hover {
  background-color: #e6c200;
  color: #000055;
  transform: translateY(-3px);
  border-color: #ffffff;
}

.page-blog-latest-news__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-latest-news__article {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  padding: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-blog-latest-news__article-title {
  color: #000080; /* Auxiliary color */
  font-size: 2.2em;
  margin-bottom: 20px;
  border-bottom: 4px solid #FFD700; /* Main brand color accent */
  padding-bottom: 10px;
  font-weight: 700;
}

.page-blog-latest-news__article-intro {
  font-style: italic;
  color: #555555;
  margin-bottom: 25px;
  font-size: 1.05em;
}

.page-blog-latest-news__article-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  display: block; /* Ensure it's a block element */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-blog-latest-news__article-subtitle {
  color: #000080; /* Auxiliary color */
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-blog-latest-news__article-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color */
  color: #000080; /* Auxiliary color for button text */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: 2px solid transparent;
}

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

.page-blog-latest-news__cta-section {
  background-color: #000080; /* Auxiliary color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-news__cta-title {
  color: #FFD700; /* Main brand color */
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-blog-latest-news__cta-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-blog-latest-news__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color */
  color: #000080; /* Auxiliary color for button text */
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: 2px solid transparent;
}

.page-blog-latest-news__cta-button:hover {
  background-color: #e6c200;
  color: #000055;
  transform: translateY(-3px);
  border-color: #ffffff;
}

.page-blog-latest-news__scroll-to-top-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000080;
  color: #FFD700;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.8em;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-blog-latest-news__scroll-to-top-button:hover {
  background-color: #000055;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-blog-latest-news__hero-title {
    font-size: 2.2em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1.1em;
  }
  .page-blog-latest-news__article-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__article-subtitle {
    font-size: 1.4em;
  }
  .page-blog-latest-news__cta-title {
    font-size: 2.2em;
  }
  .page-blog-latest-news__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-news__hero-title {
    font-size: 1.8em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-news__hero-content {
    padding: 20px;
  }
  .page-blog-latest-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-latest-news__content-area {
    padding: 20px 15px;
  }
  .page-blog-latest-news__article-title {
    font-size: 1.6em;
  }
  .page-blog-latest-news__article-subtitle {
    font-size: 1.2em;
  }
  .page-blog-latest-news__cta-title {
    font-size: 2em;
  }
  .page-blog-latest-news__cta-description {
    font-size: 0.95em;
  }
  .page-blog-latest-news__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content area image constraint */
  .page-blog-latest-news__article-image, .page-blog-latest-news__cta-image {
    max-width: 100%;
    height: auto;
  }
  .page-blog-latest-news {
    overflow-x: hidden;
  }
  .page-blog-latest-news__scroll-to-top-button {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
    line-height: 45px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-news__hero-title {
    font-size: 1.4em;
  }
  .page-blog-latest-news__hero-description {
    font-size: 0.9em;
  }
  .page-blog-latest-news__hero-content {
    padding: 15px;
  }
  .page-blog-latest-news__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-blog-latest-news__article {
    padding: 20px;
  }
  .page-blog-latest-news__article-title {
    font-size: 1.3em;
  }
  .page-blog-latest-news__article-subtitle {
    font-size: 1.05em;
  }
  .page-blog-latest-news__cta-title {
    font-size: 1.6em;
  }
  .page-blog-latest-news__cta-description {
    font-size: 0.9em;
  }
  .page-blog-latest-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}