.page-blog-industry-trends {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-blog-industry-trends__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px; /* Minimum height for hero section */
  overflow: hidden;
}

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

.page-blog-industry-trends__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay for readability */
  border-radius: 10px;
}

.page-blog-industry-trends__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-blog-industry-trends__hero-button:hover,
.page-blog-industry-trends__cta-button:hover,
.page-blog-industry-trends__final-cta:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-blog-industry-trends__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.8;
}

.page-blog-industry-trends__article {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-industry-trends__article-heading {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-align: center;
}

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

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

.page-blog-industry-trends__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-industry-trends__hero-title {
    font-size: 2.8em;
  }
  .page-blog-industry-trends__article-heading {
    font-size: 2em;
  }
  .page-blog-industry-trends__article-subheading {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-trends__hero-section {
    padding: 40px 15px;
    min-height: 400px;
  }
  .page-blog-industry-trends__hero-title {
    font-size: 2.2em;
  }
  .page-blog-industry-trends__hero-description {
    font-size: 1em;
  }
  .page-blog-industry-trends__hero-content {
    padding: 30px 15px;
  }
  .page-blog-industry-trends__content-area {
    padding: 30px 15px;
  }
  .page-blog-industry-trends__article {
    padding: 20px;
  }
  .page-blog-industry-trends__article-heading {
    font-size: 1.8em;
  }
  .page-blog-industry-trends__article-subheading {
    font-size: 1.4em;
  }
  .page-blog-industry-trends__article-paragraph {
    font-size: 0.95em;
  }
  /* Mobile content area images must be responsive */
  .page-blog-industry-trends__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size is maintained */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-blog-industry-trends__hero-title {
    font-size: 1.8em;
  }
  .page-blog-industry-trends__hero-description {
    font-size: 0.9em;
  }
  .page-blog-industry-trends__hero-button,
  .page-blog-industry-trends__cta-button,
  .page-blog-industry-trends__final-cta {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-blog-industry-trends__article-heading {
    font-size: 1.5em;
  }
  .page-blog-industry-trends__article-subheading {
    font-size: 1.2em;
  }
}