.page-blog-industry-news-trends {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-blog-industry-news-trends__hero-section {
  background-color: #1A2E44;
  color: #ffffff;
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-industry-news-trends__hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px 40px;
  max-width: 900px;
}

.page-blog-industry-news-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-blog-industry-news-trends__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-industry-news-trends__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog-industry-news-trends__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;
  white-space: nowrap;
}

.page-blog-industry-news-trends__button--primary {
  background-color: #FFD700;
  color: #1A2E44;
  border: 2px solid #FFD700;
}

.page-blog-industry-news-trends__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-industry-news-trends__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-blog-industry-news-trends__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-blog-industry-news-trends__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.page-blog-industry-news-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-industry-news-trends__articles-section,
.page-blog-industry-news-trends__cta-section,
.page-blog-industry-news-trends__trends-overview-section,
.page-blog-industry-news-trends__explore-more-section {
  padding: 60px 0;
}

.page-blog-industry-news-trends__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 20px;
}

.page-blog-industry-news-trends__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

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

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

.page-blog-industry-news-trends__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-blog-industry-news-trends__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-industry-news-trends__article-title {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-blog-industry-news-trends__article-title a:hover {
  color: #FFD700;
}

.page-blog-industry-news-trends__article-excerpt {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-industry-news-trends__read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-blog-industry-news-trends__read-more:hover {
  color: #1A2E44;
}

.page-blog-industry-news-trends__cta-section {
  background-color: #1A2E44;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-blog-industry-news-trends__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-blog-industry-news-trends__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-blog-industry-news-trends__trends-overview-section {
  background-color: #f0f0f0;
}

.page-blog-industry-news-trends__trends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-industry-news-trends__trend-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-industry-news-trends__trend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.page-blog-industry-news-trends__trend-title {
  font-size: 1.5em;
  color: #1A2E44;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-blog-industry-news-trends__trend-description {
  font-size: 1em;
  color: #555555;
}

.page-blog-industry-news-trends__explore-more-section {
  background-color: #e7e7e7;
  text-align: center;
}

.page-blog-industry-news-trends__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-blog-industry-news-trends__explore-link {
  display: block;
  background-color: #FFD700;
  color: #1A2E44;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-industry-news-trends__explore-link:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .page-blog-industry-news-trends__hero-title {
    font-size: 3em;
  }
  .page-blog-industry-news-trends__hero-description {
    font-size: 1.1em;
  }
  .page-blog-industry-news-trends__section-title {
    font-size: 2em;
  }
  .page-blog-industry-news-trends__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news-trends__hero-content {
    padding: 60px 20px 30px;
  }
  .page-blog-industry-news-trends__hero-title {
    font-size: 2.2em;
  }
  .page-blog-industry-news-trends__hero-description {
    font-size: 1em;
  }
  .page-blog-industry-news-trends__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-industry-news-trends__button {
    width: 100%;
  }
  .page-blog-industry-news-trends__articles-section,
  .page-blog-industry-news-trends__cta-section,
  .page-blog-industry-news-trends__trends-overview-section,
  .page-blog-industry-news-trends__explore-more-section {
    padding: 40px 0;
  }
  .page-blog-industry-news-trends__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news-trends__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-blog-industry-news-trends__cta-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news-trends__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-blog-industry-news-trends__article-image,
  .page-blog-industry-news-trends__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-blog-industry-news-trends__articles-grid,
  .page-blog-industry-news-trends__trends-grid,
  .page-blog-industry-news-trends__links-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-industry-news-trends__trend-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-blog-industry-news-trends__hero-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news-trends__hero-description {
    font-size: 0.9em;
  }
  .page-blog-industry-news-trends__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-blog-industry-news-trends__section-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news-trends__cta-title {
    font-size: 1.6em;
  }
  .page-blog-industry-news-trends__article-title {
    font-size: 1.2em;
  }
}