.page-blog-latest-industry-news {
  color: #333333; /* Dark text for light body background */
}

.page-blog-latest-industry-news__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-bottom: 60px; /* Added for better spacing */
}

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

.page-blog-latest-industry-news__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-latest-industry-news__hero-content {
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

.page-blog-latest-industry-news__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-blog-latest-industry-news__button--primary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-blog-latest-industry-news__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-blog-latest-industry-news__button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-blog-latest-industry-news__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF; /* Explicitly white background for content */
}

.page-blog-latest-industry-news__article {
  margin-bottom: 60px;
  line-height: 1.7;
}

.page-blog-latest-industry-news__article-heading {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-latest-industry-news__article-subheading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-latest-industry-news__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-latest-industry-news__article-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
}

.page-blog-latest-industry-news__article-list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333333;
}

.page-blog-latest-industry-news__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min width */
  min-height: 200px; /* Enforce min height */
}

.page-blog-latest-industry-news__button--inline {
  background-color: #000000; /* Primary color for inline buttons */
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
  display: inline-block;
  border: 2px solid #000000;
}

.page-blog-latest-industry-news__button--inline:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-blog-latest-industry-news__cta-section {
  background-color: #000000; /* Main dark color for CTA */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
}

.page-blog-latest-industry-news__cta-heading {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight color for CTA heading */
}

.page-blog-latest-industry-news__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-blog-latest-industry-news__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-blog-latest-industry-news__button--large:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

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

@media (max-width: 768px) {
  .page-blog-latest-industry-news__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }
  .page-blog-latest-industry-news__hero-content {
    padding: 30px;
  }
  .page-blog-latest-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-blog-latest-industry-news__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-industry-news__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-latest-industry-news__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-blog-latest-industry-news__content-area {
    padding: 40px 15px;
  }
  .page-blog-latest-industry-news__article-heading {
    font-size: 1.8em;
  }
  .page-blog-latest-industry-news__article-subheading {
    font-size: 1.3em;
  }
  .page-blog-latest-industry-news__article-paragraph,
  .page-blog-latest-industry-news__article-list-item {
    font-size: 0.95em;
  }
  /* Ensure images do not overflow on mobile */
  .page-blog-latest-industry-news__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min width is maintained */
    min-height: 200px; /* Ensure min height is maintained */
  }
  .page-blog-latest-industry-news__cta-heading {
    font-size: 2em;
  }
  .page-blog-latest-industry-news__cta-description {
    font-size: 1.1em;
  }
  .page-blog-latest-industry-news__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-blog-latest-industry-news__hero-content {
    padding: 20px;
  }
  .page-blog-latest-industry-news__article-heading {
    font-size: 1.5em;
  }
  .page-blog-latest-industry-news__article-subheading {
    font-size: 1.2em;
  }
  .page-blog-latest-industry-news__cta-heading {
    font-size: 1.8em;
  }
}