.page-blog-industry-news {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by a fixed header */
  color: #333333; /* Dark text on light background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set page background */
}

.page-blog-industry-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for hero */
  position: relative;
  overflow: hidden;
}

.page-blog-industry-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-blog-industry-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire area */
  opacity: 0.3; /* Subtle background */
  display: block;
}

.page-blog-industry-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-industry-news__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Using login color for emphasis */
  line-height: 1.2;
}

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

.page-blog-industry-news__hero-cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for primary CTA */
  color: #000000; /* Dark text on bright button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #FCBC45;
}

.page-blog-industry-news__hero-cta-button:hover {
  background-color: #e0a53d;
  transform: translateY(-2px);
}

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

.page-blog-industry-news__latest-news,
.page-blog-industry-news__in-depth-analysis,
.page-blog-industry-news__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF; /* Default background */
}

.page-blog-industry-news__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

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

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

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

.page-blog-industry-news__news-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

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

.page-blog-industry-news__news-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

.page-blog-industry-news__news-card-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-industry-news__news-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-blog-industry-news__news-card-title a:hover {
  color: #FCBC45;
}

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

.page-blog-industry-news__read-more-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-blog-industry-news__read-more-button:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-blog-industry-news__in-depth-analysis {
  background-color: #F0F0F0;
}

.page-blog-industry-news__analysis-article {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-industry-news__analysis-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-blog-industry-news__analysis-text {
  color: #444444;
  margin-bottom: 15px;
  font-size: 1em;
}

.page-blog-industry-news__cta-section {
  text-align: center;
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF; /* Light text for CTA */
}

.page-blog-industry-news__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  z-index: 0;
  display: block;
}

.page-blog-industry-news__cta-title {
  position: relative;
  z-index: 1;
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #FCBC45;
}

.page-blog-industry-news__cta-description {
  position: relative;
  z-index: 1;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFFFFF;
}

.page-blog-industry-news__cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-industry-news__cta-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, color 0.3s ease, transform 0.2s ease;
  border: 2px solid;
}

.page-blog-industry-news__cta-button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border-color: #FCBC45;
}

.page-blog-industry-news__cta-button--primary:hover {
  background-color: #e0a53d;
  border-color: #e0a53d;
  transform: translateY(-2px);
}

.page-blog-industry-news__cta-button--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
  border-color: #FFFFFF;
}

.page-blog-industry-news__cta-button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-industry-news__hero-title {
    font-size: 2.4em;
  }
  .page-blog-industry-news__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-blog-industry-news__hero-section {
    padding: 40px 15px;
  }
  .page-blog-industry-news__hero-title {
    font-size: 2em;
  }
  .page-blog-industry-news__hero-description {
    font-size: 1em;
  }
  .page-blog-industry-news__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-industry-news__latest-news,
  .page-blog-industry-news__in-depth-analysis,
  .page-blog-industry-news__cta-section {
    padding: 60px 0;
  }
  .page-blog-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__news-card-image {
    height: 200px;
  }
  .page-blog-industry-news__news-card-title {
    font-size: 1.2em;
  }
  .page-blog-industry-news__news-card-excerpt {
    font-size: 0.9em;
  }
  .page-blog-industry-news__read-more-button {
    padding: 8px 15px;
    font-size: 0.85em;
  }
  .page-blog-industry-news__analysis-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news__cta-title {
    font-size: 2em;
  }
  .page-blog-industry-news__cta-description {
    font-size: 1em;
  }
  .page-blog-industry-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-industry-news__cta-button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Ensure content images are responsive and not too small */
  .page-blog-industry-news__latest-news img,
  .page-blog-industry-news__in-depth-analysis img,
  .page-blog-industry-news__cta-section img {
    max-width: 100%;
    height: auto;
  }

  /* Specific rule to ensure content images are not smaller than 200px */
  .page-blog-industry-news img:not(.page-blog-industry-news__hero-image) { /* Exclude hero image as it's full width and already handled */
      min-width: 200px; /* Ensure images are not too small */
      min-height: 200px;
  }
}