.page-blog-industry-news {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-industry-news__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
  text-align: center;
  overflow: hidden;
  background-color: #1A237E; /* Main brand color for hero background */
  color: #ffffff;
}

.page-blog-industry-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to let background color show */
}

.page-blog-industry-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-blog-industry-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-blog-industry-news__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA button */
  color: #1A237E; /* Main brand color for text on CTA */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-industry-news__hero-cta:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
}

.page-blog-industry-news__latest-updates,
.page-blog-industry-news__market-trends,
.page-blog-industry-news__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-industry-news__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Main brand color for section titles */
  text-align: center;
  margin-bottom: 20px;
}

.page-blog-industry-news__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-industry-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-industry-news__article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-industry-news__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-industry-news__article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-industry-news__article-content {
  padding: 25px;
}

.page-blog-industry-news__article-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
  min-height: 48px; /* Ensure consistent height for titles */
}

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

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

.page-blog-industry-news__article-excerpt {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-blog-industry-news__read-more {
  display: inline-block;
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-blog-industry-news__read-more:hover {
  color: #FFD700;
  border-color: #1A237E;
}

.page-blog-industry-news__trend-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.page-blog-industry-news__trend-item--reverse {
  flex-direction: row-reverse;
}

.page-blog-industry-news__trend-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  object-fit: cover;
  height: auto;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-blog-industry-news__trend-content {
  flex: 1;
  max-width: 50%;
}

.page-blog-industry-news__trend-title {
  font-size: 2em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-blog-industry-news__trend-description {
  font-size: 1.05em;
  color: #555555;
  margin-bottom: 25px;
}

.page-blog-industry-news__cta-section {
  position: relative;
  background-color: #1A237E;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 80px;
}

.page-blog-industry-news__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2; /* Subtle background image */
}

.page-blog-industry-news__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-blog-industry-news__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-blog-industry-news__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A237E;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-industry-news__cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-industry-news__hero-title {
    font-size: 2.8em;
  }
  .page-blog-industry-news__section-title {
    font-size: 2.2em;
  }
  .page-blog-industry-news__trend-item {
    flex-direction: column;
    text-align: center;
  }
  .page-blog-industry-news__trend-item--reverse {
    flex-direction: column;
  }
  .page-blog-industry-news__trend-image,
  .page-blog-industry-news__trend-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-blog-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-blog-industry-news__hero-description {
    font-size: 1.1em;
  }
  .page-blog-industry-news__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-industry-news__section-title {
    font-size: 2em;
  }
  .page-blog-industry-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-industry-news__article-image,
  .page-blog-industry-news__trend-image {
    max-width: 100%;
    height: auto; /* Ensure images scale correctly */
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-blog-industry-news__trend-item {
    padding: 20px;
    gap: 20px;
  }
  .page-blog-industry-news__trend-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__cta-section {
    padding: 60px 15px;
  }
  .page-blog-industry-news__cta-title {
    font-size: 2.2em;
  }
  .page-blog-industry-news__cta-description {
    font-size: 1em;
  }
  .page-blog-industry-news__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content area images must not cause horizontal scroll */
  .page-blog-industry-news img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-industry-news {
    overflow-x: hidden;
  }
}