.page-news-industry-trends {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-news-industry-trends__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  margin-bottom: 40px;
  background-color: #F4F7FB;
}

.page-news-industry-trends__hero-image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-news-industry-trends__hero-content {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
  text-align: center;
}

.page-news-industry-trends__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: #1F2D3D;
  margin-bottom: 15px;
  /* Using clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-news-industry-trends__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1F2D3D;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-news-industry-trends__articles-section {
  padding: 40px 0;
  background-color: #F4F7FB;
}

.page-news-industry-trends__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-news-industry-trends__article-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-news-industry-trends__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-news-industry-trends__article-image-wrapper {
  width: 100%;
  height: 225px; /* Fixed height for consistent card image display */
  overflow: hidden;
}

.page-news-industry-trends__article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news-industry-trends__article-content {
  padding: 20px;
}

.page-news-industry-trends__article-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news-industry-trends__article-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-trends__article-title a:hover {
  color: #2F6BFF;
}

.page-news-industry-trends__article-date {
  font-size: 0.9rem;
  color: #6FA3FF;
  margin-bottom: 15px;
}

.page-news-industry-trends__article-excerpt {
  font-size: 1rem;
  line-height: 1.5;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-news-industry-trends__read-more-btn {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.page-news-industry-trends__read-more-btn:hover {
  opacity: 0.9;
}

.page-news-industry-trends__view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-news-industry-trends__view-all-btn {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
}

.page-news-industry-trends__view-all-btn:hover {
  opacity: 0.9;
}

.page-news-industry-trends__cta-section {
  background-color: #2F6BFF;
  padding: 60px 0;
  text-align: center;
  color: #FFFFFF;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 8px 25px rgba(47, 107, 255, 0.3);
}

.page-news-industry-trends__cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-news-industry-trends__cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-news-industry-trends__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Same as button, but can be customized */
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-industry-trends__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-news-industry-trends__hero-content {
    padding: 0 15px;
  }

  .page-news-industry-trends__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-news-industry-trends__description {
    font-size: 1rem;
  }

  .page-news-industry-trends__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-news-industry-trends__article-grid {
    grid-template-columns: 1fr;
  }

  .page-news-industry-trends__article-image {
    max-width: 100%;
    height: auto;
  }

  .page-news-industry-trends__article-image-wrapper {
    height: auto;
  }

  .page-news-industry-trends__cta-title {
    font-size: 2rem;
  }

  .page-news-industry-trends__cta-description {
    font-size: 1rem;
  }

  .page-news-industry-trends__cta-button {
    padding: 12px 30px;
    font-size: 1.1rem;
  }

  /* Ensure content area images do not overflow on mobile */
  .page-news-industry-trends__articles-section img {
    max-width: 100%;
    height: auto;
  }

  .page-news-industry-trends__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-news-industry-trends__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }

  .page-news-industry-trends__section-title {
    font-size: 1.6rem;
  }

  .page-news-industry-trends__cta-title {
    font-size: 1.8rem;
  }
}