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

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

.page-index-latest-news-updates__hero-section {
  background: linear-gradient(135deg, #003366 0%, #0055aa 100%); /* Deep blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-news-updates__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:hero:abstract,geometric,patterns]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-latest-news-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Gold for emphasis */
  position: relative;
  z-index: 1;
}

.page-index-latest-news-updates__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-index-latest-news-updates__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.page-index-latest-news-updates__btn--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Deep blue text */
}

.page-index-latest-news-updates__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-index-latest-news-updates__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold text */
  border: 2px solid #FFCC00;
}

.page-index-latest-news-updates__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-index-latest-news-updates__intro-section,
.page-index-latest-news-updates__updates-section,
.page-index-latest-news-updates__guides-section,
.page-index-latest-news-updates__cta-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.page-index-latest-news-updates__intro-section {
  background-color: #ffffff;
}

.page-index-latest-news-updates__updates-section {
  background-color: #f0f4f8; /* Lighter blue-gray */
}

.page-index-latest-news-updates__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-latest-news-updates__text-content {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-latest-news-updates__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-latest-news-updates__image--large {
  max-width: 80%;
}

.page-index-latest-news-updates__image--medium {
  max-width: 70%;
}

.page-index-latest-news-updates__news-article {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 51, 102, 0.08);
  margin-bottom: 40px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-latest-news-updates__article-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-index-latest-news-updates__article-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-index-latest-news-updates__article-excerpt {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.page-index-latest-news-updates__btn--link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #FFCC00;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-index-latest-news-updates__btn--link:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.page-index-latest-news-updates__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-index-latest-news-updates__guide-list li {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 51, 102, 0.05);
  border-left: 5px solid #FFCC00;
}

.page-index-latest-news-updates__guide-list li strong {
  color: #003366;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-index-latest-news-updates__guide-list li p {
  color: #555;
  font-size: 1em;
}

.page-index-latest-news-updates__cta-section {
  background-color: #003366; /* Deep blue */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-index-latest-news-updates__section-title--cta {
  color: #FFCC00; /* Gold */
}

.page-index-latest-news-updates__text-content--cta {
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-news-updates__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-news-updates__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index-latest-news-updates__section-title {
    font-size: 2em;
  }
  .page-index-latest-news-updates__news-article {
    padding: 25px;
  }
  .page-index-latest-news-updates__article-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-news-updates__hero-section {
    padding: 80px 0;
  }
  .page-index-latest-news-updates__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-news-updates__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-news-updates__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-latest-news-updates__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-index-latest-news-updates__intro-section,
  .page-index-latest-news-updates__updates-section,
  .page-index-latest-news-updates__guides-section,
  .page-index-latest-news-updates__cta-section {
    padding: 40px 0;
  }
  .page-index-latest-news-updates__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-latest-news-updates__text-content {
    font-size: 1em;
  }
  .page-index-latest-news-updates__image--large {
    max-width: 90%;
  }
  .page-index-latest-news-updates__image--medium {
    max-width: 80%;
  }
  .page-index-latest-news-updates__news-article {
    padding: 20px;
  }
  .page-index-latest-news-updates__article-title {
    font-size: 1.4em;
  }
  .page-index-latest-news-updates__guide-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-latest-news-updates__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-news-updates__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-latest-news-updates__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-news-updates__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-news-updates__article-title {
    font-size: 1.2em;
  }
  .page-index-latest-news-updates__btn--link {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}