.page-latest-news {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light grey for general text on dark background */
  line-height: 1.6;
  background-color: #0F1D2C; /* Slightly lighter than main for contrast */
}

.page-latest-news__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A2E44 0%, #0F1D2C 100%);
  position: relative;
  overflow: hidden;
  color: #F8F8F8;
}

.page-latest-news__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-latest-news__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F8F8F8;
  font-weight: 700;
}

.page-latest-news__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #CCCCCC;
}

.page-latest-news__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-latest-news__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-latest-news__btn--primary {
  background-color: #E7C200;
  color: #1A2E44;
  border: 2px solid #E7C200;
}

.page-latest-news__btn--primary:hover {
  background-color: #F8D845;
  border-color: #F8D845;
  transform: translateY(-2px);
}

.page-latest-news__btn--secondary {
  background-color: transparent;
  color: #E7C200;
  border: 2px solid #E7C200;
}

.page-latest-news__btn--secondary:hover {
  background-color: #E7C200;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-latest-news__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
  z-index: 0;
}

.page-latest-news__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-latest-news__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.page-latest-news__section:nth-of-type(even) {
  background-color: #0F1D2C;
}

.page-latest-news__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E7C200;
  font-weight: 600;
}

.page-latest-news__section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-latest-news__article {
  background-color: #1A2E44;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-latest-news__article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-latest-news__article-title {
  font-size: 1.6em;
  color: #E7C200;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-latest-news__article-excerpt {
  font-size: 1em;
  color: #CCCCCC;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-latest-news__read-more-btn {
  display: inline-block;
  background-color: #E7C200;
  color: #1A2E44;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-latest-news__read-more-btn:hover {
  background-color: #F8D845;
  transform: translateY(-1px);
}

.page-latest-news__cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.page-latest-news__cta-title {
  font-size: 2.8em;
  color: #E7C200;
  margin-bottom: 20px;
}

.page-latest-news__cta-description {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 30px;
}

.page-latest-news__call-to-action {
  background: linear-gradient(90deg, #1A2E44, #0F1D2C);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-latest-news__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-latest-news__related-links {
  background-color: #0F1D2C;
  padding: 60px 20px;
}

.page-latest-news__link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-latest-news__link-list li a {
  color: #E7C200;
  text-decoration: none;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 1px solid #E7C200;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-latest-news__link-list li a:hover {
  background-color: #E7C200;
  color: #1A2E44;
}

.highlight {
  color: #E7C200;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-latest-news__hero {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }

  .page-latest-news__hero-content {
    flex: 1;
    text-align: left;
  }

  .page-latest-news__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
  }

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

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

  .page-latest-news__hero-actions {
    justify-content: flex-start;
  }

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

  .page-latest-news__call-to-action {
    flex-direction: row;
    text-align: left;
  }

  .page-latest-news__cta-content {
    flex: 1;
    text-align: left;
  }

  .page-latest-news__cta-image {
    flex: 1;
  }
}

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

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

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

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

  .page-latest-news__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

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