.page-news {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #333; /* Inherited from body, explicit for clarity */
}

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

.page-news__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: 0;
  filter: brightness(0.6); /* Slightly dim the image for text readability */
}

.page-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure sufficient height */
}

.page-news__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
}

.page-news__hero-button, .page-news__read-more-button, .page-news__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__hero-button:hover, .page-news__read-more-button:hover, .page-news__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #000066;
}

.page-news__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  font-weight: 700;
}

.page-news__latest-section, .page-news__announcements-section, .page-news__more-info-section {
  padding: 60px 0;
}

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

.page-news__article-card {
  background-color: rgba(0, 0, 128, 0.7); /* Semi-transparent midnight blue */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-news__article-image {
  width: 100%;
  height: 250px; /* Fixed height for article images */
  object-fit: cover;
  display: block;
}

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

.page-news__article-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-news__article-title a {
  color: #FFD700; /* Gold for article titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #ffffff;
}

.page-news__article-excerpt {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__detail-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-news__detail-item {
  background-color: rgba(0, 0, 128, 0.7);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-news__detail-title {
  font-size: 2em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__detail-title a {
  color: #FFD700; /* Gold for detail titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__detail-title a:hover {
  color: #ffffff;
}

.page-news__detail-description {
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-news__more-info-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.page-news__cta-button {
  margin-top: 30px;
  width: auto;
  align-self: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 3em;
  }
  .page-news__section-title {
    font-size: 2.2em;
  }
  .page-news__article-title {
    font-size: 1.4em;
  }
  .page-news__detail-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-news__hero-content {
    padding: 80px 15px;
    min-height: 400px;
  }
  .page-news__hero-title {
    font-size: 2.5em;
  }
  .page-news__hero-description {
    font-size: 1.1em;
  }
  .page-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-news__article-grid {
    grid-template-columns: 1fr;
  }
  .page-news__article-image {
    height: 200px;
  }
  .page-news__article-content {
    padding: 20px;
  }
  .page-news__article-title {
    font-size: 1.2em;
  }
  .page-news__detail-title {
    font-size: 1.6em;
  }
  .page-news__more-info-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-news__hero-content {
    padding: 60px 10px;
    min-height: 300px;
  }
  .page-news__hero-title {
    font-size: 2em;
  }
  .page-news__hero-description {
    font-size: 1em;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__article-content {
    padding: 15px;
  }
  .page-news__article-title {
    font-size: 1.1em;
  }
  .page-news__detail-title {
    font-size: 1.4em;
  }
}

/* Ensure all img elements within .page-news meet minimum size requirements */
.page-news img {
  min-width: 200px;
  min-height: 200px;
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

/* Specific overrides for article images to ensure they meet minimum size if their parent allows */
.page-news__article-image {
  min-width: 200px;
  min-height: 200px;
  height: 250px; /* Maintain aspect ratio or ensure minimum height */
  width: 100%;
}