.page-resources-industry-news {
  color: #333333; /* Dark text for light body background */
  background-color: #ffffff; /* Explicitly set for clarity, though shared.css might handle body */
}

.page-resources-industry-news__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 400px;
}

.page-resources-industry-news__hero-container {
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.page-resources-industry-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
  z-index: 0;
}

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

.page-resources-industry-news__hero-description {
  font-size: 1.3em;
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-resources-industry-news__hero-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;
}

.page-resources-industry-news__hero-button--register {
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000;
  margin-right: 15px;
}

.page-resources-industry-news__hero-button--register:hover {
  background-color: #e0a33c;
}

.page-resources-industry-news__content-area {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.page-resources-industry-news__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-industry-news__back-link:hover {
  color: #FCBC45;
}

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

.page-resources-industry-news__intro-paragraph {
  font-size: 1.1em;
  margin-bottom: 50px;
  text-align: center;
  color: #555555;
}

.page-resources-industry-news__article {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #eeeeee;
}

.page-resources-industry-news__article-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-resources-industry-news__article-meta {
  font-size: 0.9em;
  color: #888888;
  margin-bottom: 20px;
}

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

.page-resources-industry-news__article-text {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-industry-news__article-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-resources-industry-news__article-button:hover {
  background-color: #e0a33c;
}

.page-resources-industry-news__cta-section {
  background-color: #000000;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  color: #FFFFFF;
}

.page-resources-industry-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-resources-industry-news__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #F0F0F0;
}

.page-resources-industry-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-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;
}

.page-resources-industry-news__cta-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-industry-news__cta-button--register:hover {
  background-color: #e0a33c;
}

.page-resources-industry-news__cta-button--login {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-industry-news__cta-button--login:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-industry-news__hero-title {
    font-size: 3em;
  }
  .page-resources-industry-news__hero-description {
    font-size: 1.1em;
  }
  .page-resources-industry-news__section-title {
    font-size: 2em;
  }
  .page-resources-industry-news__article-title {
    font-size: 1.8em;
  }
  .page-resources-industry-news__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-industry-news__hero-section {
    min-height: 300px;
    padding: 40px 15px;
  }
  .page-resources-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-resources-industry-news__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-resources-industry-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-right: 10px;
  }
  .page-resources-industry-news__content-area {
    margin: 30px auto;
    padding: 0 15px;
  }
  .page-resources-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-resources-industry-news__article-title {
    font-size: 1.5em;
  }
  .page-resources-industry-news__article-image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-industry-news__cta-title {
    font-size: 1.8em;
  }
  .page-resources-industry-news__cta-description {
    font-size: 1em;
  }
  .page-resources-industry-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-industry-news__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-resources-industry-news img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-resources-industry-news__hero-button {
    display: block;
    margin: 10px auto;
  }
  .page-resources-industry-news__hero-button--register {
    margin-right: 0;
  }
  .page-resources-industry-news__section-title {
    font-size: 1.5em;
  }
  .page-resources-industry-news__article-title {
    font-size: 1.3em;
  }
  .page-resources-industry-news__cta-title {
    font-size: 1.6em;
  }
}