.page-blog-latest-industry-news {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-blog-latest-industry-news__hero-section {
  background-color: #f8f8f8;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.page-blog-latest-industry-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #333333;
}

.page-blog-latest-industry-news__hero-title {
  font-size: 3.2em;
  color: #8B0000; /* Deep red for prominent title */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-blog-latest-industry-news__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text for contrast */
  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;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.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: #8B0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-latest-industry-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-blog-latest-industry-news__intro-paragraph {
  font-size: 1.1em;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #444444;
}

.page-blog-latest-industry-news__article-card {
  display: flex;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  overflow: hidden;
  border: 1px solid #eee;
}

.page-blog-latest-industry-news__article-card--reversed {
  flex-direction: row-reverse;
}

.page-blog-latest-industry-news__article-image {
  flex: 1;
  min-width: 40%;
}

.page-blog-latest-industry-news__article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum image width */
  min-height: 200px; /* Enforce minimum image height */
}

.page-blog-latest-industry-news__article-content {
  flex: 1.5;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-blog-latest-industry-news__article-title {
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-blog-latest-industry-news__article-excerpt {
  font-size: 1.05em;
  color: #333333;
  margin-bottom: 25px;
  text-align: justify;
}

.page-blog-latest-industry-news__sub-article-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-blog-latest-industry-news__sub-article-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-latest-industry-news__read-more-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 15px;
  margin-right: 15px;
}

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

.page-blog-latest-industry-news__read-more-button--secondary {
  background-color: #8B0000;
  color: #FFD700;
}

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

.page-blog-latest-industry-news__related-links {
  margin-top: 80px;
  padding: 40px;
  background-color: #f8f8f8;
  border-radius: 12px;
  text-align: center;
}

.page-blog-latest-industry-news__related-links-title {
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 25px;
}

.page-blog-latest-industry-news__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-latest-industry-news__link-list li a {
  display: block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-blog-latest-industry-news__link-list li a:hover {
  background-color: #e6c200;
  color: #660000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-latest-industry-news__hero-title {
    font-size: 2.5em;
  }
  .page-blog-latest-industry-news__hero-description {
    font-size: 1.1em;
  }
  .page-blog-latest-industry-news__section-title {
    font-size: 2em;
  }
  .page-blog-latest-industry-news__article-card {
    flex-direction: column;
  }
  .page-blog-latest-industry-news__article-card--reversed {
    flex-direction: column;
  }
  .page-blog-latest-industry-news__article-image,
  .page-blog-latest-industry-news__article-content {
    min-width: unset;
    width: 100%;
  }
  .page-blog-latest-industry-news__article-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-industry-news {
    padding-top: var(--header-offset, 80px);
  }
  .page-blog-latest-industry-news__hero-title {
    font-size: 2em;
  }
  .page-blog-latest-industry-news__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-industry-news__hero-section {
    padding: 60px 15px;
  }
  .page-blog-latest-industry-news__hero-button {
    padding: 12px 25px;
    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__intro-paragraph {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-blog-latest-industry-news__article-card {
    margin-bottom: 40px;
  }
  .page-blog-latest-industry-news__article-title {
    font-size: 1.6em;
  }
  .page-blog-latest-industry-news__article-excerpt,
  .page-blog-latest-industry-news__sub-article-text {
    font-size: 0.95em;
  }
  .page-blog-latest-industry-news__sub-article-title {
    font-size: 1.2em;
  }
  .page-blog-latest-industry-news__read-more-button {
    font-size: 0.9em;
    padding: 10px 20px;
    margin-right: 10px;
  }
  .page-blog-latest-industry-news__related-links {
    margin-top: 60px;
    padding: 30px 20px;
  }
  .page-blog-latest-industry-news__related-links-title {
    font-size: 1.6em;
  }
  .page-blog-latest-industry-news__link-list li a {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  /* Ensure content images are responsive and do not overflow */
  .page-blog-latest-industry-news 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__hero-description {
    font-size: 0.9em;
  }
  .page-blog-latest-industry-news__article-title {
    font-size: 1.4em;
  }
  .page-blog-latest-industry-news__sub-article-title {
    font-size: 1.1em;
  }
  .page-blog-latest-industry-news__link-list {
    flex-direction: column;
    align-items: center;
  }
  .page-blog-latest-industry-news__link-list li a {
    width: 90%;
    text-align: center;
  }
}