.page-blog-industry-news {
  color: #f0f0f0; /* Light text for better contrast on potentially darker backgrounds, or adjust if body is truly white */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #1a1a2e; /* Darker background for the main content to match brand tone */
}

.page-blog-industry-news__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-blog-industry-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-blog-industry-news__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
}

.page-blog-industry-news__hero-content {
  position: relative;
  z-index: 3;
  background: rgba(10, 35, 66, 0.85); /* Primary color with transparency */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-blog-industry-news__hero-title {
  font-size: 3.2em;
  color: #F2C94C; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-blog-industry-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-industry-news__hero-button {
  display: inline-block;
  background-color: #F2C94C; /* Auxiliary color */
  color: #0A2342; /* Primary color for text */
  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-button:hover {
  background-color: #e0b03c;
  transform: translateY(-3px);
}

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

.page-blog-industry-news__section-title {
  font-size: 2.5em;
  color: #F2C94C; /* Auxiliary color */
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.page-blog-industry-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F2C94C;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-industry-news__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #e0e0e0;
}

.page-blog-industry-news__latest-news, .page-blog-industry-news__market-trends, .page-blog-industry-news__regulatory-updates {
  background-color: #0A2342; /* Primary color for section backgrounds */
  padding: 60px 0;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-blog-industry-news__article-card {
  display: flex;
  background-color: #1c3a5e; /* Slightly lighter shade of primary */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-blog-industry-news__article-card:hover {
  transform: translateY(-5px);
}

.page-blog-industry-news__article-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
}

.page-blog-industry-news__article-content {
  padding: 30px;
  width: 60%;
}

.page-blog-industry-news__article-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-blog-industry-news__article-title a {
  color: #F2C94C; /* Auxiliary color */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-blog-industry-news__read-more {
  display: inline-block;
  color: #F2C94C; /* Auxiliary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-industry-news__read-more:hover {
  color: #ffffff;
}

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

.page-blog-industry-news__trend-item, .page-blog-industry-news__update-item {
  background-color: #1c3a5e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-blog-industry-news__trend-item:hover, .page-blog-industry-news__update-item:hover {
  transform: translateY(-5px);
}

.page-blog-industry-news__trend-image, .page-blog-industry-news__update-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-industry-news__trend-item h3, .page-blog-industry-news__update-item h3 {
  font-size: 1.5em;
  color: #F2C94C;
  padding: 20px 20px 10px;
}

.page-blog-industry-news__update-item h3 a {
  color: #F2C94C; /* Auxiliary color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-industry-news__update-item h3 a:hover {
  color: #ffffff;
}

.page-blog-industry-news__trend-description, .page-blog-industry-news__update-description {
  font-size: 0.95em;
  color: #e0e0e0;
  padding: 0 20px 20px;
}

.page-blog-industry-news__call-to-action {
  background-color: #F2C94C; /* Auxiliary color for CTA */
  padding: 80px 20px;
  text-align: center;
  color: #0A2342; /* Primary color for text on auxiliary background */
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-blog-industry-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-blog-industry-news__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-blog-industry-news__cta-button {
  display: inline-block;
  background-color: #0A2342; /* Primary color */
  color: #F2C94C; /* Auxiliary color for text */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-blog-industry-news__cta-button--secondary {
  background-color: #ffffff;
  color: #0A2342;
}

.page-blog-industry-news__cta-button--secondary:hover {
  background-color: #e0e0e0;
}

/* Read More links within trend/update items */
.page-blog-industry-news__trend-item .page-blog-industry-news__read-more, 
.page-blog-industry-news__update-item .page-blog-industry-news__read-more {
  padding: 0 20px 20px;
  display: block;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-industry-news__hero-title {
    font-size: 2.8em;
  }
  .page-blog-industry-news__hero-description {
    font-size: 1.1em;
  }
  .page-blog-industry-news__article-card {
    flex-direction: column;
  }
  .page-blog-industry-news__article-image,
  .page-blog-industry-news__article-content {
    width: 100%;
  }
  .page-blog-industry-news__article-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-section {
    min-height: 400px;
  }
  .page-blog-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-blog-industry-news__hero-description {
    font-size: 1em;
  }
  .page-blog-industry-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-industry-news__section-title {
    font-size: 2em;
  }
  .page-blog-industry-news__section-intro {
    font-size: 0.95em;
  }
  .page-blog-industry-news__article-card {
    margin-bottom: 30px;
  }
  .page-blog-industry-news__article-image {
    height: 250px;
  }
  .page-blog-industry-news__article-content {
    padding: 20px;
  }
  .page-blog-industry-news__article-title {
    font-size: 1.5em;
  }
  .page-blog-industry-news__trend-grid, .page-blog-industry-news__update-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-industry-news__cta-title {
    font-size: 2em;
  }
  .page-blog-industry-news__cta-description {
    font-size: 1em;
  }
  .page-blog-industry-news__cta-button {
    display: block;
    margin: 15px auto;
    width: 80%;
    max-width: 300px;
  }
  /* Mobile content image constraint */
  .page-blog-industry-news img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__hero-description {
    font-size: 0.9em;
  }
  .page-blog-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__cta-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__article-image {
    height: 200px;
  }
  .page-blog-industry-news__trend-image, .page-blog-industry-news__update-image {
    height: 200px;
  }
}