.page-resources-latest-industry-trends {
  color: #333333; /* Default text color for light body background */
}

.page-resources-latest-industry-trends__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-resources-latest-industry-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-latest-industry-trends__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

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

.page-resources-latest-industry-trends__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #F0F0F0;
}

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

.page-resources-latest-industry-trends__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;
  white-space: nowrap;
}

.page-resources-latest-industry-trends__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-latest-industry-trends__button--register:hover {
  background-color: #E0E0E0;
  color: #000000;
}

.page-resources-latest-industry-trends__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-latest-industry-trends__button--login:hover {
  background-color: #E6A83C;
  color: #000000;
}

.page-resources-latest-industry-trends__button--download,
.page-resources-latest-industry-trends__button--join {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-latest-industry-trends__button--download:hover,
.page-resources-latest-industry-trends__button--join:hover {
  background-color: #E6A83C;
  color: #000000;
}

.page-resources-latest-industry-trends__button--explore {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-latest-industry-trends__button--explore:hover {
  background-color: #333333;
  color: #FFFFFF;
}

.page-resources-latest-industry-trends__article-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-resources-latest-industry-trends__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-latest-industry-trends__back-link {
  margin-bottom: 30px;
  text-align: left;
}

.page-resources-latest-industry-trends__back-link a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-latest-industry-trends__back-link a:hover {
  color: #FCBC45;
}

.page-resources-latest-industry-trends__article-content h2 {
  font-size: 2.5em;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-resources-latest-industry-trends__article-content h3 {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-resources-latest-industry-trends__article-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-resources-latest-industry-trends__cta-button-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-latest-industry-trends__back-link--bottom {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .page-resources-latest-industry-trends__hero-title {
    font-size: 3em;
  }

  .page-resources-latest-industry-trends__hero-description {
    font-size: 1.1em;
  }

  .page-resources-latest-industry-trends__article-content h2 {
    font-size: 2.2em;
  }

  .page-resources-latest-industry-trends__article-content h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-industry-trends__hero-title {
    font-size: 2.5em;
  }

  .page-resources-latest-industry-trends__hero-description {
    font-size: 1em;
  }

  .page-resources-latest-industry-trends__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-industry-trends__button {
    width: 100%;
    max-width: 300px;
  }

  .page-resources-latest-industry-trends__article-section {
    padding: 40px 0;
  }

  .page-resources-latest-industry-trends__container {
    padding: 0 15px;
  }

  .page-resources-latest-industry-trends__article-content h2 {
    font-size: 2em;
  }

  .page-resources-latest-industry-trends__article-content h3 {
    font-size: 1.5em;
  }

  .page-resources-latest-industry-trends__article-content p {
    font-size: 1em;
  }

  .page-resources-latest-industry-trends__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  /* Ensure content area images do not overflow */
  .page-resources-latest-industry-trends img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-industry-trends__hero-content {
    padding: 60px 15px;
  }

  .page-resources-latest-industry-trends__hero-title {
    font-size: 2em;
  }

  .page-resources-latest-industry-trends__hero-description {
    font-size: 0.9em;
  }

  .page-resources-latest-industry-trends__article-content h2 {
    font-size: 1.8em;
  }

  .page-resources-latest-industry-trends__article-content h3 {
    font-size: 1.3em;
  }
}