.page-news {
  font-family: 'Arial', sans-serif;
  color: #f5e6ce; /* Light text for dark background */
  background-color: #0A1931; /* Main dark background */
}

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

.page-news__hero {
  position: relative;
  background: linear-gradient(135deg, #0A1931 0%, #203657 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px; /* Ensure sufficient height */
}

.page-news__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

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

.page-news__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-news__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-news__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-news__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

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

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-news__description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: -40px auto 60px auto;
  color: #e0e0e0;
}

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

.page-news__article {
  background-color: #1a2a47; /* Slightly lighter dark blue 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__article:hover {
  transform: translateY(-5px);
}

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

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

.page-news__article-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  line-height: 1.3;
}

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

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

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

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

.page-news__arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.page-news__read-more:hover .page-news__arrow {
  transform: translateX(5px);
}

.page-news__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-top: 40px;
}

.page-news__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-news__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-news__industry-insights .page-news__article--small {
  grid-template-columns: 1fr; /* Single column for smaller cards */
}

.page-news__reports-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.page-news__report-item {
  flex: 0 0 450px; /* Fixed width for carousel items */
  scroll-snap-align: start;
  background-color: #1a2a47;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-news__report-item:hover {
  transform: translateY(-5px);
}

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

.page-news__report-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 25px 10px;
  line-height: 1.3;
}

.page-news__report-excerpt {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
  padding: 0 25px 20px;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Limit to 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news__report-item .page-news__read-more {
  padding: 0 25px 25px;
  display: flex; /* Ensure arrow alignment */
}

.page-news__testimonials {
  background-color: #0A1931;
}

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

.page-news__testimonial-card {
  background-color: #1a2a47;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news__testimonial-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 20px;
  font-style: italic;
}

.page-news__testimonial-author {
  font-size: 0.95em;
  font-weight: bold;
  color: #FFD700;
  text-align: right;
}

.page-news__cta-download {
  background: linear-gradient(90deg, #0A1931 0%, #203657 100%);
  padding: 80px 0;
  text-align: center;
}

.page-news__cta-download .page-news__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-news__cta-image {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-news__cta-content {
  max-width: 700px;
}

.page-news__section-title--light {
  color: #FFD700;
}

.page-news__description--light {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-news__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-news__faq {
  background-color: #0A1931;
}

.page-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-news__faq-item {
  background-color: #1a2a47;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-news__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.page-news__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-news__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-news__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-news__faq-answer.active {
  max-height: 300px; /* Adjust based on expected content height */
  padding: 15px 25px 25px;
}

.page-news__faq-answer p {
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__title {
    font-size: 2.8em;
  }
  .page-news__subtitle {
    font-size: 1.2em;
  }
  .page-news__section-title {
    font-size: 2.2em;
  }
  .page-news__report-item {
    flex: 0 0 380px;
  }
}

@media (max-width: 768px) {
  .page-news__hero {
    padding: 80px 0;
  }
  .page-news__title {
    font-size: 2.2em;
  }
  .page-news__subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-news__section {
    padding: 60px 0;
  }
  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-news__description {
    margin: -30px auto 40px auto;
  }
  .page-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news__article-title {
    font-size: 1.4em;
  }
  .page-news__report-item {
    flex: 0 0 90%; /* Adjust for better mobile scrolling */
  }
  .page-news__report-title {
    font-size: 1.5em;
  }
  .page-news__cta-download .page-news__container {
    flex-direction: column;
  }
  .page-news__cta-image {
    max-width: 250px;
  }
  .page-news__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-news__faq-answer.active {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-news__hero {
    padding: 60px 0;
  }
  .page-news__title {
    font-size: 1.8em;
  }
  .page-news__subtitle {
    font-size: 0.9em;
  }
  .page-news__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__section {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-news__description {
    margin: -20px auto 30px auto;
  }
  .page-news__article-title {
    font-size: 1.2em;
  }
  .page-news__report-item {
    flex: 0 0 100%;
  }
  .page-news__report-title {
    font-size: 1.3em;
  }
  .page-news__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}