/* style/index-latest-news-updates.css */
.page-index-latest-news-updates {
  font-family: 'Arial', sans-serif;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F;
}

.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, #0A192F 0%, #1a3a60 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-news-updates__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

.page-index-latest-news-updates__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-index-latest-news-updates__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-index-latest-news-updates__btn--primary:hover {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

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

.page-index-latest-news-updates__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-index-latest-news-updates__news-list {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-index-latest-news-updates__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-latest-news-updates__section-description {
  font-size: 1.1em;
  color: #d0d0d0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-index-latest-news-updates__news-item {
  display: flex;
  flex-direction: column;
  background-color: #1a2b40;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-news-updates__news-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-latest-news-updates__news-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.page-index-latest-news-updates__news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-index-latest-news-updates__news-item:hover .page-index-latest-news-updates__news-image {
  transform: scale(1.05);
}

.page-index-latest-news-updates__news-content {
  padding: 30px;
}

.page-index-latest-news-updates__news-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-index-latest-news-updates__news-excerpt {
  font-size: 1em;
  color: #f5e6d0;
  line-height: 1.7;
  margin-bottom: 25px;
}

.page-index-latest-news-updates__read-more {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 8px 0;
}

.page-index-latest-news-updates__read-more:hover {
  color: #fff;
  text-decoration: underline;
}

.page-index-latest-news-updates__cta-section {
  background-color: #1a2b40;
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-index-latest-news-updates__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-latest-news-updates__cta-description {
  font-size: 1.2em;
  color: #d0d0d0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (min-width: 768px) {
  .page-index-latest-news-updates__news-item {
    flex-direction: row;
  }

  .page-index-latest-news-updates__news-image-wrapper {
    width: 40%;
    height: auto;
  }

  .page-index-latest-news-updates__news-content {
    width: 60%;
    padding: 40px;
  }
}

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

  .page-index-latest-news-updates__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-index-latest-news-updates__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .page-index-latest-news-updates__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .page-index-latest-news-updates__section-title {
    font-size: 2em;
  }

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

  .page-index-latest-news-updates__cta-title {
    font-size: 2em;
  }
  .page-index-latest-news-updates__cta-description {
    font-size: 1em;
  }
}