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

.page-resources-latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-latest-news__hero-section {
  background-color: #000080; /* Auxiliary dark blue background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-resources-latest-news__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-latest-news__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Main golden color */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-resources-latest-news__hero-image {
  width: 100%;
  max-width: 1000px; /* Constrain hero image width */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-resources-latest-news__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main golden color */
  color: #000080; /* Auxiliary dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

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

.page-resources-latest-news__cta-button--inline {
    margin-top: 30px;
}

.page-resources-latest-news__articles-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-resources-latest-news__section-title {
  font-size: 2.2em;
  color: #000080; /* Auxiliary dark blue */
  text-align: center;
  margin-bottom: 50px;
}

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

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

.page-resources-latest-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-resources-latest-news__article-image-wrapper {
  height: 225px; /* Fixed height for image wrappers */
  overflow: hidden;
}

.page-resources-latest-news__article-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-resources-latest-news__article-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-resources-latest-news__article-title a {
  color: #000080; /* Auxiliary dark blue */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-latest-news__article-title a:hover {
  color: #FFD700; /* Main golden color */
}

.page-resources-latest-news__article-meta {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
}

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

.page-resources-latest-news__read-more {
  color: #FFD700; /* Main golden color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-news__read-more:hover {
  color: #000080; /* Auxiliary dark blue */
}

.page-resources-latest-news__in-depth-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-resources-latest-news__in-depth-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-latest-news__long-article {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
}

.page-resources-latest-news__long-article-title {
  font-size: 2em;
  color: #000080;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-latest-news__long-article-meta {
  font-size: 0.9em;
  color: #666666;
  text-align: center;
  margin-bottom: 30px;
}

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

.page-resources-latest-news__long-article-paragraph {
  margin-bottom: 20px;
}

.page-resources-latest-news__long-article-subtitle {
  font-size: 1.6em;
  color: #000080;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-resources-latest-news__long-article-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-latest-news__long-article-list li {
  margin-bottom: 10px;
}

.page-resources-latest-news__blockquote {
  background-color: #f0f0f0;
  border-left: 5px solid #FFD700; /* Main golden color */
  padding: 20px 30px;
  margin: 30px 0;
  font-style: italic;
  color: #555555;
  font-size: 1.1em;
}

.page-resources-latest-news__blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: bold;
  color: #000080;
}

.page-resources-latest-news__related-resources {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-resources-latest-news__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-resources-latest-news__related-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-latest-news__related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-news__related-card img {
  width: 100%;
  height: 200px; /* Fixed height for related card images */
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-resources-latest-news__related-title {
  font-size: 1.2em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-resources-latest-news__related-title a {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-latest-news__related-title a:hover {
  color: #FFD700;
}

.page-resources-latest-news__related-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px;
}

.page-resources-latest-news__back-link-wrapper {
  text-align: center;
}

.page-resources-latest-news__back-link {
  display: inline-block;
  color: #000080;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 2px solid #000080;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-latest-news__back-link:hover {
  background-color: #000080;
  color: #FFD700;
}

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

@media (max-width: 768px) {
  .page-resources-latest-news__hero-section {
    padding: 60px 15px;
  }
  .page-resources-latest-news__hero-title {
    font-size: 2em;
  }
  .page-resources-latest-news__hero-description {
    font-size: 1em;
  }
  .page-resources-latest-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-latest-news__articles-section,
  .page-resources-latest-news__in-depth-section,
  .page-resources-latest-news__related-resources {
    padding: 40px 0;
  }
  .page-resources-latest-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-latest-news__article-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-latest-news__in-depth-content {
    padding: 0 15px;
  }
  .page-resources-latest-news__long-article-title {
    font-size: 1.8em;
  }
  .page-resources-latest-news__long-article-subtitle {
    font-size: 1.4em;
  }
  .page-resources-latest-news__long-article img,
  .page-resources-latest-news__article-image-wrapper img,
  .page-resources-latest-news__related-card img {
    max-width: 100%;
    height: auto;
  }
  .page-resources-latest-news__related-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-latest-news__article-image-wrapper,
  .page-resources-latest-news__related-card img {
    height: 200px; /* Maintain minimum height for content images */
  }
  .page-resources-latest-news__long-article-image {
    width: 100%;
    height: auto; /* Allow auto height for larger article images */
    min-height: 200px; /* Ensure minimum display size */
  }
}