/* style/news.css */
.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F; /* Main dark background */
}

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

.page-news .highlight {
  color: #FFD700; /* Accent color for highlights */
}

.page-news__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3d5e 100%); /* Gradient background */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-news__section {
  padding: 60px 0;
}

.page-news__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-news__section-description {
  font-size: 1.2em;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-news__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

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

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

.page-news__article-title {
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-news__article-link {
  color: #FFD700; /* Accent color for article titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-link:hover {
  color: #FFFFFF;
}

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

.page-news__article-excerpt {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news__read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-news__industry-trends .page-news__trend-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  background-color: #1a2c42;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-news__industry-trends .page-news__trend-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-news__industry-trends .page-news__trend-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-news__industry-trends .page-news__trend-text {
  font-size: 1.1em;
  color: #CCCCCC;
}

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

.page-news__policy-card {
  background-color: #1a2c42;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-news__policy-card:hover {
  transform: translateY(-5px);
}

.page-news__policy-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-news__policy-text {
  font-size: 1em;
  color: #CCCCCC;
}

.page-news__expert-analysis .page-news__analysis-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-news__analysis-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-news__analysis-text {
  font-size: 1.1em;
  color: #CCCCCC;
  max-width: 900px;
  text-align: justify;
}

.page-news__cta {
  background-color: #FFD700; /* Accent background for CTA */
  color: #0A192F; /* Dark text on accent background */
  text-align: center;
  padding: 80px 0;
}

.page-news__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0A192F;
}

.page-news__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-news__button--primary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #0A192F;
}

.page-news__button--primary:hover {
  background-color: #2a3d5e;
  transform: translateY(-3px);
}

.page-news__button--secondary {
  background-color: transparent;
  color: #0A192F;
  border: 2px solid #0A192F;
}

.page-news__button--secondary:hover {
  background-color: #0A192F;
  color: #FFD700;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__section-title {
    font-size: 2.2em;
  }
  .page-news__article-title {
    font-size: 1.4em;
  }
  .page-news__industry-trends .page-news__trend-item {
    flex-direction: column;
    text-align: center;
  }
  .page-news__industry-trends .page-news__trend-icon {
    margin: 0 auto 20px;
  }
  .page-news__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-news__hero-title {
    font-size: 2.2em;
  }
  .page-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__section-description {
    font-size: 1em;
  }
  .page-news__articles-grid, .page-news__policy-grid {
    grid-template-columns: 1fr;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-subtitle {
    font-size: 0.9em;
  }
  .page-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__section {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: 1.5em;
  }
  .page-news__article-title {
    font-size: 1.2em;
  }
  .page-news__cta-title {
    font-size: 1.8em;
  }
  .page-news__cta-description {
    font-size: 1em;
  }
}