/* style/index-latest-news.css */
.page-index-latest-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #000080; /* Dark blue background */
}

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

/* Hero Section */
.page-index-latest-news__hero-section {
  background: linear-gradient(135deg, #000080 0%, #000040 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

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

.page-index-latest-news__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-index-latest-news__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Golden button */
  color: #000080; /* Dark blue text on golden button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-latest-news__cta-button:hover {
  background-color: #E0C000; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

/* News Grid Section */
.page-index-latest-news__news-grid-section {
  padding: 60px 0;
  background-color: #000060; /* Slightly lighter dark blue */
}

.page-index-latest-news__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Golden for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-latest-news__section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-news__news-card {
  display: flex;
  background-color: #000080; /* Dark blue card background */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-news__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-index-latest-news__news-image {
  width: 40%;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-index-latest-news__news-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-index-latest-news__news-title {
  font-size: 1.8em;
  color: #FFD700; /* Golden for news titles */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-latest-news__news-meta {
  font-size: 0.9em;
  color: #A0A0A0;
  margin-bottom: 15px;
}

.page-index-latest-news__news-excerpt {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-latest-news__read-more {
  display: inline-block;
  background-color: #FFD700; /* Golden button */
  color: #000080; /* Dark blue text on golden button */
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-news__read-more:hover {
  background-color: #E0C000;
  transform: translateY(-2px);
}

/* CTA Download Section */
.page-index-latest-news__cta-download-section {
  background-color: #000080;
  padding: 80px 0;
  text-align: center;
}

.page-index-latest-news__cta-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-index-latest-news__cta-text {
  max-width: 700px;
}

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

.page-index-latest-news__cta-description {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-index-latest-news__cta-download-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  margin-bottom: 20px;
}

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

.page-index-latest-news__qr-code-image {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  border: 4px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Subscription Section */
.page-index-latest-news__subscription-section {
  background-color: #000060;
  padding: 60px 0;
  text-align: center;
}

.page-index-latest-news__subscribe-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-index-latest-news__email-input {
  padding: 15px 25px;
  border-radius: 30px;
  border: 2px solid #FFD700;
  background-color: #000040;
  color: #FFFFFF;
  font-size: 1.1em;
  width: 100%;
  max-width: 400px;
  outline: none;
  transition: border-color 0.3s ease;
}

.page-index-latest-news__email-input::placeholder {
  color: #A0A0A0;
}

.page-index-latest-news__email-input:focus {
  border-color: #E0C000;
}

.page-index-latest-news__subscribe-button {
  background-color: #FFD700;
  color: #000080;
  padding: 15px 30px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-news__subscribe-button:hover {
  background-color: #E0C000;
  transform: translateY(-2px);
}

.page-index-latest-news__privacy-note {
  margin-top: 25px;
  font-size: 0.9em;
  color: #C0C0C0;
}

.page-index-latest-news__privacy-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-latest-news__privacy-link:hover {
  color: #E0C000;
  text-decoration: underline;
}

/* Related Links Section */
.page-index-latest-news__related-links-section {
  padding: 60px 0;
  background-color: #000080;
}

.page-index-latest-news__related-links-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.page-index-latest-news__related-link {
  display: block;
  background-color: #000040;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 1px solid #FFD700;
}

.page-index-latest-news__related-link:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-news__hero-title {
    font-size: 2.8em;
  }

  .page-index-latest-news__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-index-latest-news__news-card {
    flex-direction: column;
  }

  .page-index-latest-news__news-image {
    width: 100%;
    height: 250px;
  }

  .page-index-latest-news__news-content {
    padding: 20px;
  }

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

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

  .page-index-latest-news__cta-description {
    font-size: 1em;
  }
}

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

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

  .page-index-latest-news__hero-subtitle {
    font-size: 1em;
  }

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

  .page-index-latest-news__news-grid-section {
    padding: 40px 0;
  }

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

  .page-index-latest-news__section-description {
    font-size: 0.95em;
  }

  .page-index-latest-news__news-image {
    height: 200px;
  }

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

  .page-index-latest-news__news-excerpt {
    font-size: 0.9em;
  }

  .page-index-latest-news__read-more {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  .page-index-latest-news__cta-download-section {
    padding: 60px 0;
  }

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

  .page-index-latest-news__cta-download-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index-latest-news__subscribe-form {
    flex-direction: column;
    align-items: center;
  }

  .page-index-latest-news__email-input {
    max-width: 300px;
  }

  .page-index-latest-news__related-links-list {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-latest-news__related-link {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

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

  .page-index-latest-news__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-latest-news__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-index-latest-news__news-image {
    height: 150px;
  }

  .page-index-latest-news__news-content {
    padding: 15px;
  }

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

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

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

  .page-index-latest-news__qr-code-image {
    width: 120px;
    height: 120px;
  }

  .page-index-latest-news__email-input,
  .page-index-latest-news__subscribe-button {
    width: 100%;
    max-width: 280px;
  }
}