.page-news {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-news-hero {
  background: linear-gradient(135deg, #0A2463, #3B5998);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-news-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  line-height: 1.2;
}

.page-news-hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-news-link-highlight {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-link-highlight:hover {
  color: #ffffff;
}

.page-news-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Sections General */
.page-news-featured-articles, .page-news-all-articles, .page-news-about {
  padding: 60px 0;
}

.page-news-section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-news-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

/* Featured Articles Grid */
.page-news-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news-article-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-news-article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-news-card-content {
  padding: 25px;
}

.page-news-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  min-height: 70px; /* Ensure consistent height */
}

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

.page-news-card-title a:hover {
  color: #FFD700;
}

.page-news-card-date {
  font-size: 0.9em;
  color: #777777;
  margin-bottom: 15px;
}

.page-news-card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-news-read-more {
  display: inline-block;
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-news-read-more:hover {
  color: #FFD700;
  border-color: #0A2463;
}

/* All Articles List */
.page-news-article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-news-list-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-news-list-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-news-list-content {
  flex-grow: 1;
}

.page-news-list-title {
  font-size: 1.3em;
  margin-bottom: 8px;
}

.page-news-list-title a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-list-title a:hover {
  color: #FFD700;
}

.page-news-list-date {
  font-size: 0.85em;
  color: #888888;
  margin-bottom: 10px;
}

.page-news-list-description {
  font-size: 0.95em;
  color: #666666;
}

/* Pagination */
.page-news-pagination {
  text-align: center;
  margin-top: 50px;
}

.page-news-pagination-link {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 5px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  text-decoration: none;
  color: #0A2463;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-news-pagination-link:hover, .page-news-pagination-active {
  background-color: #FFD700;
  color: #0A2463;
  border-color: #FFD700;
}

/* About Section */
.page-news-about {
  background-color: #f0f2f5;
  padding: 80px 0;
  text-align: center;
}

.page-news-about-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-about-cta {
  margin-top: 30px;
}

/* Keywords highlight */
.page-news-keyword {
  color: #0A2463;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news-hero-title {
    font-size: 2.5em;
  }
  .page-news-hero-subtitle {
    font-size: 1.1em;
  }
  .page-news-section-title {
    font-size: 2em;
  }
  .page-news-list-item {
    flex-direction: column;
    text-align: center;
  }
  .page-news-list-image {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    max-width: 350px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-news-hero {
    padding: 60px 20px;
  }
  .page-news-hero-title {
    font-size: 2em;
  }
  .page-news-hero-subtitle {
    font-size: 1em;
  }
  .page-news-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news-featured-articles, .page-news-all-articles, .page-news-about {
    padding: 40px 0;
  }
  .page-news-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-article-grid {
    grid-template-columns: 1fr;
  }
  .page-news-article-card {
    margin: 0 10px;
  }
  .page-news-card-title {
    font-size: 1.3em;
    min-height: auto;
  }
  .page-news-list-item {
    padding: 15px;
  }
  .page-news-list-image {
    height: 180px;
  }
  .page-news-pagination-link {
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .page-news-hero-title {
    font-size: 1.8em;
  }
  .page-news-hero-subtitle {
    font-size: 0.9em;
  }
  .page-news-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-news-section-title {
    font-size: 1.5em;
  }
  .page-news-card-content {
    padding: 15px;
  }
  .page-news-card-title {
    font-size: 1.2em;
  }
  .page-news-list-image {
    width: 100%;
    max-width: 250px;
    height: 150px;
  }
  .page-news-list-title {
    font-size: 1.1em;
  }
  .page-news-list-description {
    font-size: 0.85em;
  }
  .page-news-pagination-link {
    margin: 0 3px;
  }
}