/* style/latest-news.css */
.page-latest-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-latest-news__hero {
  background: linear-gradient(135deg, #003366, #1a4a80);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-latest-news__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-latest-news__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-news__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-latest-news__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-latest-news__cta-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #fff;
}

.page-latest-news__section {
  padding: 60px 0;
}

.page-latest-news__section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.page-latest-news__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-latest-news__sub-section-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-latest-news__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-latest-news__overview .page-latest-news__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-latest-news__overview .page-latest-news__text-content {
  flex: 2;
}

.page-latest-news__overview .page-latest-news__image-container {
  flex: 1;
  text-align: center;
}

.page-latest-news__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-latest-news__image-caption {
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 0.9em;
}

.page-latest-news__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 20px;
}

.page-latest-news__list li {
  margin-bottom: 10px;
  color: #444;
}

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

.page-latest-news__article-card {
  background-color: #fff;
  border-radius: 10px;
  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-latest-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-latest-news__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-latest-news__article-title {
  font-size: 1.4em;
  color: #003366;
  padding: 20px;
  margin-bottom: 0;
  flex-grow: 1;
}

.page-latest-news__article-title a {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

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

.page-latest-news__article-excerpt {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 15px;
}

.page-latest-news__read-more {
  display: inline-block;
  background-color: #003366;
  color: #fff;
  padding: 10px 20px;
  margin: 0 20px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-latest-news__read-more:hover {
  background-color: #004d99;
}

.page-latest-news__why-choose-us {
  background-color: #eef4f8;
}

.page-latest-news__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-latest-news__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-latest-news__feature-item:hover {
  transform: translateY(-5px);
}

.page-latest-news__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-latest-news__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-latest-news__feature-item p {
  color: #555;
  font-size: 0.95em;
}

.page-latest-news__cta {
  background: linear-gradient(135deg, #003366, #001a33);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-latest-news__cta .page-latest-news__section-title {
  color: #FFD700;
}

.page-latest-news__cta .page-latest-news__description {
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-news__cta-buttons {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-latest-news__hero {
    padding: 80px 0;
  }

  .page-latest-news__title {
    font-size: 2.8em;
  }

  .page-latest-news__subtitle {
    font-size: 1.3em;
  }

  .page-latest-news__overview .page-latest-news__content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-latest-news__overview .page-latest-news__image-container {
    margin-top: 40px;
  }

  .page-latest-news__section-title {
    font-size: 2em;
  }

  .page-latest-news__article-title {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-latest-news__hero {
    padding: 60px 0;
  }

  .page-latest-news__title {
    font-size: 2.2em;
  }

  .page-latest-news__subtitle {
    font-size: 1.1em;
  }

  .page-latest-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-latest-news__cta-button--secondary {
    margin-left: 10px;
    margin-top: 10px;
  }

  .page-latest-news__section {
    padding: 40px 0;
  }

  .page-latest-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-latest-news__sub-section-title {
    font-size: 1.5em;
  }

  .page-latest-news__article-grid {
    grid-template-columns: 1fr;
  }

  .page-latest-news__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-latest-news__cta-button {
    width: 80%;
    margin: 10px 0 !important;
  }
}

@media (max-width: 480px) {
  .page-latest-news__title {
    font-size: 1.8em;
  }

  .page-latest-news__subtitle {
    font-size: 1em;
  }

  .page-latest-news__section-title {
    font-size: 1.5em;
  }

  .page-latest-news__sub-section-title {
    font-size: 1.3em;
  }

  .page-latest-news__article-title {
    font-size: 1.1em;
  }

  .page-latest-news__feature-title {
    font-size: 1.3em;
  }
}