.page-blog-latest-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); /* Ensures content starts below fixed header */
}

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

/* Hero Section */
.page-blog-latest-industry-news__hero-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-blog-latest-industry-news__hero-content {
  max-width: 800px;
}

.page-blog-latest-industry-news__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-blog-latest-industry-news__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000; /* Dark text for the button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-blog-latest-industry-news__hero-button:hover {
  background-color: #e0a73a;
}

.page-blog-latest-industry-news__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
}

.page-blog-latest-industry-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Articles Section */
.page-blog-latest-industry-news__articles-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-blog-latest-industry-news__article {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-latest-industry-news__article-image {
  width: 100%;
  height: auto;
  max-height: 450px; /* Ensure images don't stretch too tall */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-latest-industry-news__article-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

.page-blog-latest-industry-news__article-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-blog-latest-industry-news__article-excerpt {
  font-size: 1em;
  color: #444444;
  margin-bottom: 25px;
}

.page-blog-latest-industry-news__read-more-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-blog-latest-industry-news__read-more-button:hover {
  background-color: #333333;
}

/* Call to Action Section */
.page-blog-latest-industry-news__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
}

.page-blog-latest-industry-news__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-blog-latest-industry-news__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #cccccc;
}

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

.page-blog-latest-industry-news__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-blog-latest-industry-news__cta-button--register:hover {
  background-color: #f0f0f0;
}

.page-blog-latest-industry-news__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-blog-latest-industry-news__cta-button--login:hover {
  background-color: #e0a73a;
}

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

  .page-blog-latest-industry-news__section-title {
    font-size: 2.2em;
  }

  .page-blog-latest-industry-news__article-title {
    font-size: 1.6em;
  }

  .page-blog-latest-industry-news__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-industry-news {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .page-blog-latest-industry-news__hero-section {
    flex-direction: column;
    padding: 40px 15px;
  }

  .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__articles-section {
    padding: 40px 0;
  }

  .page-blog-latest-industry-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-latest-industry-news__article {
    padding: 20px;
  }

  .page-blog-latest-industry-news__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-blog-latest-industry-news__article-title {
    font-size: 1.4em;
  }

  .page-blog-latest-industry-news__cta-section {
    padding: 40px 15px;
  }

  .page-blog-latest-industry-news__cta-title {
    font-size: 1.8em;
  }

  .page-blog-latest-industry-news__cta-button {
    display: block;
    margin: 15px auto;
    width: 80%;
    max-width: 300px;
  }

  .page-blog-latest-industry-news__container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-industry-news__hero-title {
    font-size: 1.8em;
  }

  .page-blog-latest-industry-news__section-title {
    font-size: 1.5em;
  }

  .page-blog-latest-industry-news__article-title {
    font-size: 1.2em;
  }

  .page-blog-latest-industry-news__cta-title {
    font-size: 1.5em;
  }
}