/* style/latest-news.css */
.page-latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-latest-news__hero {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

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

.page-latest-news__hero .page-latest-news__container {
  position: relative;
  z-index: 1;
}

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

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

.page-latest-news__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #000000; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #ffc107;
}

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

.page-latest-news__section {
  padding: 60px 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

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

.page-latest-news__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-latest-news__section-description {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

.page-latest-news__article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-latest-news__article-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px 20px;
  color: #007bff;
  line-height: 1.3;
}

.page-latest-news__article-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-latest-news__article-link:hover {
  color: #0056b3;
}

.page-latest-news__article-excerpt {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.5;
}

.page-latest-news__button {
  display: inline-block;
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  margin: 0 20px 20px 20px;
  transition: background-color 0.3s ease;
}

.page-latest-news__button:hover {
  background-color: #0056b3;
}

.page-latest-news__button--secondary {
  background-color: #ffc107; /* Auxiliary color */
  color: #000000; /* Dark text for contrast */
}

.page-latest-news__button--secondary:hover {
  background-color: #e0a800;
}

.page-latest-news__cta-block {
  background-color: #007bff;
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-latest-news__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: 500;
}

.page-latest-news__deep-content {
  background-color: #f2f7fd; /* Lighter shade of primary for background */
  color: #333333;
  padding: 80px 0;
}

.page-latest-news__deep-content h2 {
  font-size: 2.8em;
  color: #0056b3; /* Darker primary for headings */
  margin-bottom: 30px;
  text-align: center;
}

.page-latest-news__deep-content h3 {
  font-size: 2em;
  color: #007bff; /* Primary color */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #ffc107; /* Auxiliary accent */
  padding-left: 15px;
}

.page-latest-news__deep-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444444;
}

.page-latest-news__deep-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-latest-news__deep-content ul li {
  background-color: #ffffff;
  border-left: 4px solid #ffc107;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
}

.page-latest-news__deep-content ul li strong {
  color: #007bff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-latest-news__title {
    font-size: 2.8em;
  }
  .page-latest-news__subtitle {
    font-size: 1.2em;
  }
  .page-latest-news__section-title {
    font-size: 2em;
  }
  .page-latest-news__deep-content h2 {
    font-size: 2.2em;
  }
  .page-latest-news__deep-content h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-latest-news__hero {
    padding: 60px 0;
    min-height: 350px;
  }
  .page-latest-news__title {
    font-size: 2.2em;
  }
  .page-latest-news__subtitle {
    font-size: 1em;
  }
  .page-latest-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-latest-news__section {
    padding: 40px 0;
  }
  .page-latest-news__section-title {
    font-size: 1.8em;
  }
  .page-latest-news__section-description {
    font-size: 1em;
  }
  .page-latest-news__article-list {
    grid-template-columns: 1fr;
  }
  .page-latest-news__cta-block {
    padding: 30px;
    margin-top: 40px;
  }
  .page-latest-news__cta-text {
    font-size: 1.2em;
  }
  .page-latest-news__deep-content {
    padding: 60px 0;
  }
  .page-latest-news__deep-content h2 {
    font-size: 1.8em;
  }
  .page-latest-news__deep-content h3 {
    font-size: 1.4em;
  }
  .page-latest-news__deep-content p, .page-latest-news__deep-content ul li {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-latest-news__title {
    font-size: 1.8em;
  }
  .page-latest-news__subtitle {
    font-size: 0.9em;
  }
  .page-latest-news__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-latest-news__section-title {
    font-size: 1.5em;
  }
  .page-latest-news__deep-content h2 {
    font-size: 1.5em;
  }
  .page-latest-news__deep-content h3 {
    font-size: 1.2em;
  }
}