.page-news__hero-section {
  position: relative;
  padding-top: 0; /* Assumed shared.css handles body padding-top */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0A2463, #2a4a8d);
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.page-news__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E3B23C; /* Using accent color for title for contrast and appeal */
}

.page-news__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.page-news__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
}

.page-news__section-title--white {
  color: #ffffff;
}

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

.page-news__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-news__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

.page-news__latest-news-section {
  padding: 80px 0;
}

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

.page-news__news-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-news__news-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  overflow: hidden;
}

.page-news__news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-news__news-card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__news-card-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__news-card-title a:hover {
  color: #E3B23C;
}

.page-news__news-card-date {
  font-size: 0.9em;
  color: #6c757d;
  margin-bottom: 15px;
}

.page-news__news-card-summary {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #E3B23C;
  color: #0A2463;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-news__read-more-btn:hover {
  background-color: #d1a433;
  border-color: #d1a433;
  color: #ffffff;
}

.page-news__pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.page-news__pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #0A2463;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-news__pagination-link:hover {
  background-color: #E3B23C;
  color: #ffffff;
}

.page-news__pagination-link--active {
  background-color: #0A2463;
  color: #ffffff;
}

.page-news__categories-section {
  padding: 60px 0;
  text-align: center;
}

.page-news__categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-news__category-card {
  display: inline-block;
  padding: 12px 25px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-news__category-card:hover {
  background-color: #E3B23C;
  color: #0A2463;
  border-color: #E3B23C;
}

.page-news__featured-article-section {
  padding: 80px 0;
}

.page-news__featured-card {
  display: flex;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.page-news__featured-card-image {
  flex: 1;
  min-width: 300px;
}

.page-news__featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news__featured-card-content {
  flex: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}