/* style/news.css */
.page-news {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Text color for general content */
  background-color: #0A1931; /* Main background color */
  line-height: 1.6;
}

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

.page-news__hero-section {
  background: linear-gradient(135deg, #0A1931, #2a3d5f); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
}

.page-news__hero-title {
  font-size: 3.5em;
  color: #E6B325; /* Accent color for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news__hero-subtitle {
  font-size: 1.5em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-news__hero-button {
  display: inline-block;
  background-color: #E6B325; /* Accent color for button */
  color: #0A1931; /* Dark text on accent button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news__hero-button:hover {
  background-color: #f7d77b;
  transform: translateY(-3px);
}

.page-news__section-title {
  font-size: 2.8em;
  color: #E6B325; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-news__section-description {
  font-size: 1.2em;
  color: #ccc;
  text-align: center;
  margin-bottom: 50px;
}

.page-news__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-news__news-card {
  background-color: #1a2a47; /* Slightly lighter dark background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-news__news-card:hover {
  transform: translateY(-10px);
}

.page-news__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-news__news-content {
  padding: 25px;
}

.page-news__news-card-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  min-height: 70px;
}

.page-news__news-card-title a {
  color: #E6B325; /* Accent color for card titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__news-card-title a:hover {
  color: #f7d77b;
}

.page-news__news-date {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 15px;
}

.page-news__news-excerpt {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news__read-more {
  color: #E6B325; /* Accent color for read more links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #f7d77b;
}

.page-news__promotions-section {
  background-color: #0A1931;
  padding-bottom: 60px;
}

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

.page-news__promo-card {
  background-color: #1a2a47;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
}

.page-news__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-news__promo-title {
  font-size: 1.8em;
  color: #E6B325;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-news__promo-excerpt {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-news__promo-button {
  display: inline-block;
  background-color: #E6B325;
  color: #0A1931;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news__promo-button:hover {
  background-color: #f7d77b;
  transform: translateY(-3px);
}

.page-news__industry-insights-section {
  background-color: #12213d; /* Slightly different dark background */
  padding-bottom: 60px;
}

.page-news__articles-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-news__article-item {
  background-color: #1a2a47;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news__article-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-news__article-title a {
  color: #E6B325;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #f7d77b;
}

.page-news__article-meta {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-news__cta-section {
  background-color: #0A1931;
  padding: 80px 0;
  text-align: center;
}

.page-news__cta-title {
  font-size: 2.5em;
  color: #E6B325;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news__cta-description {
  font-size: 1.3em;
  color: #ccc;
  margin-bottom: 40px;
}

.page-news__cta-button {
  display: inline-block;
  background-color: #E6B325;
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

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

.page-news__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #E6B325;
  color: #E6B325;
}

.page-news__cta-button--secondary:hover {
  background-color: #E6B325;
  color: #0A1931;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-news__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-news__news-grid, .page-news__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-news__news-card-title {
    font-size: 1.4em;
  }

  .page-news__promo-title {
    font-size: 1.6em;
  }

  .page-news__article-title {
    font-size: 1.6em;
  }

  .page-news__cta-title {
    font-size: 2em;
  }

  .page-news__cta-button {
    margin: 10px 0;
  }
}

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

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

  .page-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-news__news-content, .page-news__promo-card, .page-news__article-item {
    padding: 20px;
  }
}