/* style/news.css */

/* Base styles for news page */
.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light gray for general text on dark backgrounds */
  background-color: #0A2463; /* Deep blue main background */
}

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

/* Hero Section */
.page-news__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1F3A83 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #F8F8F8;
}

.page-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B94A; /* Gold for title */
  font-weight: bold;
}

.page-news__hero-title .highlight {
  color: #F8F8F8; /* White for highlighted keyword */
}

.page-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-news__btn--primary {
  background-color: #E0B94A; /* Gold primary button */
  color: #0A2463; /* Deep blue text on gold */
  border: 2px solid #E0B94A;
}

.page-news__btn--primary:hover {
  background-color: #F0C95A; /* Lighter gold on hover */
  color: #0A2463;
}

.page-news__btn--secondary {
  background-color: transparent;
  color: #E0B94A; /* Gold text for secondary */
  border: 2px solid #E0B94A;
}

.page-news__btn--secondary:hover {
  background-color: #E0B94A;
  color: #0A2463;
}

.page-news__btn--link {
  color: #E0B94A; /* Gold for text links */
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
  font-size: 1em;
}

.page-news__btn--link:hover {
  color: #F0C95A;
}

/* Introduction Section */
.page-news__introduction {
  padding: 60px 0;
  background-color: #0A2463;
  color: #F8F8F8;
  text-align: justify;
}

.page-news__introduction p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-news__introduction .highlight {
  color: #E0B94A;
  font-weight: bold;
}

.page-news__intro-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.page-news__section-title {
  font-size: 2.5em;
  color: #E0B94A; /* Gold for section titles */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
}

.page-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B94A;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Featured News Section */
.page-news__featured-news {
  padding: 60px 0;
  background-color: #1F3A83; /* Slightly lighter blue for contrast */
  color: #F8F8F8;
}

.page-news__article {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.page-news__article-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news__article-title {
  font-size: 2em;
  color: #E0B94A;
  margin-bottom: 15px;
  text-align: center;
}

.page-news__article-title .highlight {
  color: #F8F8F8;
}

.page-news__article-excerpt {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
}

/* Content Sections (smaller articles) */
.page-news__content-sections {
  padding: 60px 0;
  background-color: #0A2463;
  color: #F8F8F8;
}

.page-news__article-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(224, 185, 74, 0.3);
}

.page-news__article-image-small {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news__article-title-small {
  font-size: 1.6em;
  color: #E0B94A;
  margin-bottom: 10px;
  text-align: center;
}

.page-news__article-title-small .highlight {
  color: #F8F8F8;
}

.page-news__article-excerpt-small {
  font-size: 1em;
  text-align: justify;
  margin-bottom: 15px;
}

/* CTA Block within content */
.page-news__cta-block {
  background-color: #1F3A83;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-news__cta-text {
  font-size: 1.4em;
  margin-bottom: 25px;
  color: #F8F8F8;
}

/* All News List Section */
.page-news__all-news {
  padding: 60px 0;
  background-color: #0A2463;
  color: #F8F8F8;
}

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

.page-news__news-item {
  background-color: #1F3A83; /* Darker blue for news items */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news__item-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-news__item-title a {
  color: #E0B94A; /* Gold for news item titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__item-title a:hover {
  color: #F0C95A;
}

.page-news__item-title .highlight {
  color: #F8F8F8;
}

.page-news__item-description {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Conclusion CTA Section */
.page-news__conclusion-cta {
  padding: 60px 0;
  background-color: #1F3A83;
  text-align: center;
  color: #F8F8F8;
}

.page-news__conclusion-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__article {
    flex-direction: column;
  }
  .page-news__article-title {
    font-size: 1.8em;
  }
  .page-news__article-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-news__hero-title {
    font-size: 2.2em;
  }
  .page-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__article-title {
    font-size: 1.5em;
  }
  .page-news__article-title-small {
    font-size: 1.4em;
  }
  .page-news__cta-text {
    font-size: 1.2em;
  }
  .page-news__conclusion-text {
    font-size: 1.1em;
  }
  .page-news__news-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-subtitle {
    font-size: 1em;
  }
  .page-news__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-news__section-title {
    font-size: 1.5em;
  }
  .page-news__article-title {
    font-size: 1.3em;
  }
  .page-news__article-title-small {
    font-size: 1.2em;
  }
  .page-news__cta-block, .page-news__conclusion-cta {
    padding: 30px 20px;
  }
}