.page-blog-industry-news {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-blog-industry-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.page-blog-industry-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

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

.page-blog-industry-news__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-industry-news__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-blog-industry-news__button--primary {
  background-color: #FFD700; /* Primary brand color */
  color: #1a1a1a;
}

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

.page-blog-industry-news__button--secondary {
  background-color: #1E90FF; /* Auxiliary brand color */
  color: #ffffff;
  border: 2px solid #1E90FF;
}

.page-blog-industry-news__button--secondary:hover {
  background-color: #1a7ae6;
  transform: translateY(-3px);
}

.page-blog-industry-news__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-blog-industry-news__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-industry-news__latest-news-section,
.page-blog-industry-news__featured-insights-section,
.page-blog-industry-news__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-blog-industry-news__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

.page-blog-industry-news__news-card,
.page-blog-industry-news__insight-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-industry-news__news-card:hover,
.page-blog-industry-news__insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-industry-news__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-blog-industry-news__card-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px 20px;
  line-height: 1.3;
}

.page-blog-industry-news__card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-industry-news__card-title a:hover {
  color: #fff;
}

.page-blog-industry-news__card-excerpt {
  font-size: 0.95em;
  color: #b0b0b0;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-blog-industry-news__read-more {
  display: inline-block;
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
  padding: 0 20px 20px 20px;
  transition: color 0.3s ease;
}

.page-blog-industry-news__read-more:hover {
  color: #fff;
}

.page-blog-industry-news__cta-section {
  text-align: center;
  background-color: rgba(30, 144, 255, 0.1);
  border-radius: 15px;
  padding: 80px 40px;
  margin-bottom: 60px;
}

.page-blog-industry-news__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-industry-news__hero-title {
    font-size: 2.8em;
  }

  .page-blog-industry-news__section-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-section {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-blog-industry-news__hero-title {
    font-size: 2.2em;
  }

  .page-blog-industry-news__hero-description {
    font-size: 1em;
  }

  .page-blog-industry-news__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-industry-news__button {
    width: 100%;
    max-width: 300px;
  }

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

  .page-blog-industry-news__section-intro {
    font-size: 0.95em;
  }

  .page-blog-industry-news__news-grid,
  .page-blog-industry-news__insights-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure content images are not too wide on mobile */
  .page-blog-industry-news__news-card img,
  .page-blog-industry-news__insight-card img {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Minimum height for content images */
  }

  .page-blog-industry-news__card-image {
    height: 200px;
  }

  .page-blog-industry-news__news-card,
  .page-blog-industry-news__insight-card {
    margin-bottom: 20px;
  }

  .page-blog-industry-news__latest-news-section,
  .page-blog-industry-news__featured-insights-section,
  .page-blog-industry-news__cta-section {
    padding: 40px 15px;
  }

  /* Content area images must not be smaller than 200px */
  .page-blog-industry-news img:not(.page-blog-industry-news__hero-image img) {
    min-width: 200px;
    min-height: 200px;
  }

  .page-blog-industry-news__cta-actions {
    flex-direction: column;
  }
}

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

  .page-blog-industry-news__section-title {
    font-size: 1.6em;
  }

  .page-blog-industry-news__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-blog-industry-news__card-title {
    font-size: 1.4em;
  }

  .page-blog-industry-news__card-excerpt {
    font-size: 0.9em;
  }
}