.page-blog-industry-news {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-blog-industry-news__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero section */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.page-blog-industry-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-blog-industry-news__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-blog-industry-news__hero-content {
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-blog-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  line-height: 1.2;
}

.page-blog-industry-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-blog-industry-news__hero-button,
.page-blog-industry-news__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for buttons */
  color: #0A2463; /* Main color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog-industry-news__hero-button:hover,
.page-blog-industry-news__cta-button:hover {
  background-color: #e6c200;
  color: #051a44;
}

.page-blog-industry-news__articles-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.page-blog-industry-news__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-industry-news__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Main color for section titles */
  text-align: center;
  margin-bottom: 20px;
}

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

.page-blog-industry-news__article-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
}

.page-blog-industry-news__article-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page-blog-industry-news__article-content {
  padding: 30px;
}

.page-blog-industry-news__article-title {
  font-size: 1.8em;
  color: #0A2463; /* Main color for article titles */
  margin-bottom: 15px;
}

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

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

.page-blog-industry-news__article-excerpt {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-blog-industry-news__read-more-button {
  display: inline-block;
  color: #0A2463; /* Main color for read more links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-blog-industry-news__cta-section {
  background-color: #0A2463; /* Main color for CTA background */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-blog-industry-news__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Accent color for CTA title */
  margin-bottom: 20px;
}

.page-blog-industry-news__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-blog-industry-news__article-card {
    flex-direction: row;
  }

  .page-blog-industry-news__article-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-blog-industry-news__article-image {
    width: 50%;
    height: auto;
  }

  .page-blog-industry-news__article-content {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-section {
    height: 500px;
  }

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

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

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

  .page-blog-industry-news__article-image {
    height: 250px;
    max-width: 100%; /* Ensure images don't overflow */
  }

  .page-blog-industry-news__article-content {
    padding: 20px;
  }

  .page-blog-industry-news__article-title {
    font-size: 1.5em;
  }

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

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

  /* Ensure content area does not cause horizontal scroll */
  .page-blog-industry-news {
    overflow-x: hidden;
  }

  .page-blog-industry-news__container {
    padding: 0 15px;
  }
}

/* Ensure all images within the content area are responsive and not too small */
.page-blog-industry-news img {
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-blog-industry-news img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-height: 200px;
  }
}