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

.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, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-news-updates-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  z-index: 0;
}

.page-index-latest-news-updates-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-index-latest-news-updates-hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.page-index-latest-news-updates-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-latest-news-updates-section:nth-of-type(even) {
  background-color: #f1f7fe;
}

.page-index-latest-news-updates-section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-index-latest-news-updates-section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-index-latest-news-updates-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-latest-news-updates-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-latest-news-updates-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-latest-news-updates-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-latest-news-updates-card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-index-latest-news-updates-card-date {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.page-index-latest-news-updates-card-text {
  font-size: 1em;
  color: #444;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-latest-news-updates-link-text {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
  display: inline-block;
}

.page-index-latest-news-updates-link-text:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-index-latest-news-updates-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-index-latest-news-updates-btn-primary {
  background-color: #ffc107;
  color: #000;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.page-index-latest-news-updates-btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.page-index-latest-news-updates-btn-secondary {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-index-latest-news-updates-btn-secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-index-latest-news-updates-btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
  min-width: 200px;
}

.page-index-latest-news-updates-text-center {
  text-align: center;
}

.page-index-latest-news-updates-mt-40 {
  margin-top: 40px;
}

.page-index-latest-news-updates-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-index-latest-news-updates-list li {
  background-color: #f8f9fa;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-index-latest-news-updates-list li:hover {
  background-color: #e9ecef;
}

.page-index-latest-news-updates-list-link {
  font-size: 1.15em;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  display: block;
}

.page-index-latest-news-updates-list-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-index-latest-news-updates-cta {
  background: linear-gradient(45deg, #0056b3, #007bff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 8px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-latest-news-updates-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index-latest-news-updates-cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-index-latest-news-updates-btn-cta {
  background-color: #ffc107;
  color: #000;
  margin: 0 10px;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-index-latest-news-updates-btn-cta:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.5);
}

.page-index-latest-news-updates-btn-cta-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  margin: 0 10px;
}

.page-index-latest-news-updates-btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffc107;
  color: #ffc107;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-latest-news-updates-hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-news-updates-section-title {
    font-size: 2em;
  }
  .page-index-latest-news-updates-cta-title {
    font-size: 2.5em;
  }
  .page-index-latest-news-updates-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@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-section {
    padding: 40px 0;
  }
  .page-index-latest-news-updates-section-title {
    font-size: 1.8em;
  }
  .page-index-latest-news-updates-card-title {
    font-size: 1.3em;
  }
  .page-index-latest-news-updates-btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-index-latest-news-updates-btn-large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-index-latest-news-updates-cta-title {
    font-size: 2em;
  }
  .page-index-latest-news-updates-cta-text {
    font-size: 1.1em;
  }
  .page-index-latest-news-updates-btn-cta, .page-index-latest-news-updates-btn-cta-outline {
    margin-bottom: 15px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .page-index-latest-news-updates-hero-section {
    padding: 60px 0;
  }
  .page-index-latest-news-updates-hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-news-updates-hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-news-updates-section-title {
    font-size: 1.5em;
  }
  .page-index-latest-news-updates-section-description {
    font-size: 0.95em;
  }
  .page-index-latest-news-updates-card-image {
    height: 160px;
  }
  .page-index-latest-news-updates-card-title {
    font-size: 1.2em;
  }
  .page-index-latest-news-updates-list li {
    padding: 15px 20px;
  }
  .page-index-latest-news-updates-list-link {
    font-size: 1em;
  }
  .page-index-latest-news-updates-cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-news-updates-cta-text {
    font-size: 1em;
  }
  .page-index-latest-news-updates-btn-large {
    font-size: 1em;
    padding: 10px 20px;
  }
}