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

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

/* Hero Section */
.page-blog-industry-news__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 500px;
}

.page-blog-industry-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken background image for text readability */
}

.page-blog-industry-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-blog-industry-news__hero-title {
  font-size: 3.5em;
  color: #E3B23C;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-industry-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-blog-industry-news__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog-industry-news__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, transform 0.2s ease;
  cursor: pointer;
}

.page-blog-industry-news__button--primary {
  background-color: #E3B23C;
  color: #0A2463;
  border: 2px solid #E3B23C;
}

.page-blog-industry-news__button--primary:hover {
  background-color: #f5c96b;
  transform: translateY(-2px);
}

.page-blog-industry-news__button--secondary {
  background-color: transparent;
  color: #E3B23C;
  border: 2px solid #E3B23C;
}

.page-blog-industry-news__button--secondary:hover {
  background-color: rgba(227, 178, 60, 0.1);
  transform: translateY(-2px);
}

/* Section Titles */
.page-blog-industry-news__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

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

/* Latest Updates Section */
.page-blog-industry-news__latest-updates {
  background-color: #f9f9f9;
  padding: 80px 0;
}

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

.page-blog-industry-news__news-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;
  display: flex;
  flex-direction: column;
}

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

.page-blog-industry-news__news-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-industry-news__news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-industry-news__news-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-industry-news__news-title a {
  text-decoration: none;
  color: inherit;
}

.page-blog-industry-news__news-title a:hover {
  color: #E3B23C;
}

.page-blog-industry-news__news-excerpt {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-industry-news__read-more {
  color: #E3B23C;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto;
}

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

/* Deep Dive Section */
.page-blog-industry-news__deep-dive {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-blog-industry-news__paragraph {
  font-size: 1.05em;
  margin-bottom: 25px;
  color: #444444;
  text-align: justify;
}

/* Regulatory Updates Section */
.page-blog-industry-news__regulatory-updates {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 0;
}

.page-blog-industry-news__regulatory-updates .page-blog-industry-news__section-title {
  color: #E3B23C;
}

.page-blog-industry-news__regulatory-updates .page-blog-industry-news__section-description {
  color: #f0f0f0;
}

.page-blog-industry-news__regulatory-updates .page-blog-industry-news__paragraph {
  color: #e0e0e0;
}

.page-blog-industry-news__content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-blog-industry-news__text-content {
  flex: 1;
}

.page-blog-industry-news__image-right {
  flex: 0 0 600px; /* Base width */
  width: 600px;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Innovation Section */
.page-blog-industry-news__innovation {
  padding: 80px 0;
  background-color: #f0f4f8;
}

.page-blog-industry-news__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-blog-industry-news__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-blog-industry-news__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-blog-industry-news__feature-text {
  color: #555555;
  font-size: 0.95em;
}

/* Expert Insights Section */
.page-blog-industry-news__expert-insights {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-blog-industry-news__interview-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
}

.page-blog-industry-news__interview-card {
  flex: 1;
  max-width: 500px;
  text-align: center;
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-industry-news__interview-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 5px solid #E3B23C;
}

.page-blog-industry-news__interview-name {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-blog-industry-news__interview-quote {
  font-style: italic;
  color: #666666;
  font-size: 1.1em;
  line-height: 1.7;
}

/* Call to Action Section */
.page-blog-industry-news__cta-section {
  background: linear-gradient(135deg, #0A2463, #2A4F8B);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-blog-industry-news__cta-content {
  max-width: 900px;
}

.page-blog-industry-news__cta-title {
  font-size: 3em;
  color: #E3B23C;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

  .page-blog-industry-news__hero-description {
    font-size: 1.1em;
  }

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

  .page-blog-industry-news__content-flex {
    flex-direction: column;
  }

  .page-blog-industry-news__image-right {
    flex: none;
    width: 100%;
    height: auto;
    max-width: 600px;
    margin-top: 40px;
  }

  .page-blog-industry-news__interview-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-section {
    padding: 80px 20px;
  }

  .page-blog-industry-news__hero-title {
    font-size: 2.5em;
  }

  .page-blog-industry-news__hero-description {
    font-size: 1em;
  }

  .page-blog-industry-news__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-industry-news__button {
    width: 100%;
    max-width: 300px;
  }

  .page-blog-industry-news__news-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-industry-news__image-right {
    max-width: 100%;
    width: auto;
  }

  .page-blog-industry-news__feature-list {
    grid-template-columns: 1fr;
  }

  .page-blog-industry-news__interview-card {
    max-width: 100%;
  }

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

  .page-blog-industry-news__cta-description {
    font-size: 1em;
  }

  .page-blog-industry-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure content area images do not overflow */
  .page-blog-industry-news img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-industry-news__news-image, .page-blog-industry-news__image-right, .page-blog-industry-news__interview-avatar {
    max-width: 100%;
    height: auto;
  }
  .page-blog-industry-news {
    overflow-x: hidden;
  }
}

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

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

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

  .page-blog-industry-news__news-image {
    height: 180px;
  }
  .page-blog-industry-news__interview-avatar {
    width: 150px;
    height: 150px;
  }
}