.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 content is not hidden by fixed header */
}

.page-blog-industry-news__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex; /* Use flexbox for content layering */
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a decent height */
}

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

.page-blog-industry-news__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-blog-industry-news__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

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

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

.page-blog-industry-news__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-blog-industry-news__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

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

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

.page-blog-industry-news__section {
  padding: 60px 20px;
}

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

.page-blog-industry-news__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-industry-news__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444444;
}

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

.page-blog-industry-news__card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

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

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

.page-blog-industry-news__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-industry-news__card-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-industry-news__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: auto;
}

.page-blog-industry-news__button--small:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-blog-industry-news__market-analysis, .page-blog-industry-news__future-outlook {
  background-color: #f9f9f9;
}

.page-blog-industry-news__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

.page-blog-industry-news__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-blog-industry-news__content-image {
  flex: 1;
  min-width: 400px; /* Minimum size for content images */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-industry-news__text-content {
  flex: 1;
}

.page-blog-industry-news__sub-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-industry-news__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog-industry-news__list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #444444;
}

.page-blog-industry-news__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FCBC45;
}

.page-blog-industry-news__cta-block {
  text-align: center;
  margin-top: 50px;
}

.page-blog-industry-news__cta-text {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 25px;
  font-weight: bold;
}

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

.page-blog-industry-news__article-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

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

.page-blog-industry-news__article-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-industry-news__article-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-industry-news__article-title a {
  color: #000000;
  text-decoration: none;
}

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

.page-blog-industry-news__article-excerpt {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 15px;
}

.page-blog-industry-news__read-more {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
}

.page-blog-industry-news__read-more:hover {
  text-decoration: underline;
}

.page-blog-industry-news__final-cta {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-blog-industry-news__final-cta .page-blog-industry-news__section-title {
  color: #FFFFFF;
}

.page-blog-industry-news__final-cta .page-blog-industry-news__paragraph {
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-blog-industry-news__container--center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-industry-news__hero-title {
    font-size: 2.5em;
  }
  .page-blog-industry-news__section-title {
    font-size: 2em;
  }
  .page-blog-industry-news__content-wrapper {
    flex-direction: column;
  }
  .page-blog-industry-news__content-wrapper--reverse {
    flex-direction: column-reverse;
  }
  .page-blog-industry-news__content-image {
    min-width: unset;
    width: 100%;
  }
}

@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-title {
    font-size: 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__section {
    padding: 40px 15px;
  }
  .page-blog-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__sub-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news__paragraph {
    font-size: 0.95em;
  }
  .page-blog-industry-news__button {
    width: 100%;
  }
  .page-blog-industry-news__card-image, .page-blog-industry-news__article-image {
    height: 180px;
  }
  /* Ensure all content images within .page-blog-industry-news are responsive and not too small */
  .page-blog-industry-news__content-image,
  .page-blog-industry-news__card-image,
  .page-blog-industry-news__article-image,
  .page-blog-industry-news__section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px; /* Minimum size for content images */
  }
}