.page-blog-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); /* Ensure content is not hidden by fixed header */
  background-color: #f8f8f8; /* Slightly off-white background for the page content */
}

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

.page-blog-industry-news__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

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

.page-blog-industry-news__hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
}

.page-blog-industry-news__hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
  background: rgba(0, 51, 102, 0.7); /* Semi-transparent deep blue overlay */
  border-radius: 10px;
}

.page-blog-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFCC00; /* Gold for main title */
  font-weight: bold;
}

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

.page-blog-industry-news__hero-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold button */
  color: #003366; /* Deep blue 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: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-blog-industry-news__intro-section,
.page-blog-industry-news__trends-section,
.page-blog-industry-news__regulatory-section,
.page-blog-industry-news__innovation-section,
.page-blog-industry-news__related-articles {
  padding: 60px 0;
}

.page-blog-industry-news__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-blog-industry-news__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

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

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

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

.page-blog-industry-news__article-image,
.page-blog-industry-news__innovation-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, will be overridden by media query for smaller cards */
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #FFCC00; /* Gold border */
}

.page-blog-industry-news__full-width-image {
  width: 100%;
  height: 400px; /* Larger height for full width image */
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
  border-bottom: 3px solid #FFCC00; /* Gold border */
}

.page-blog-industry-news__article-card .page-blog-industry-news__article-image,
.page-blog-industry-news__innovation-item .page-blog-industry-news__innovation-image {
  height: 200px; /* Smaller height for card images */
}

.page-blog-industry-news__article-title,
.page-blog-industry-news__innovation-title {
  font-size: 1.5em;
  color: #003366; /* Deep blue for article titles */
  padding: 20px 20px 10px;
  margin-top: 0;
}

.page-blog-industry-news__article-title a,
.page-blog-industry-news__innovation-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-blog-industry-news__article-title a:hover,
.page-blog-industry-news__innovation-title a:hover {
  color: #FFCC00; /* Gold on hover */
}

.page-blog-industry-news__article-excerpt,
.page-blog-industry-news__innovation-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-industry-news__read-more-button,
.page-blog-industry-news__cta-button {
  display: inline-block;
  background-color: #003366; /* Deep blue button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-industry-news__read-more-button:hover,
.page-blog-industry-news__cta-button:hover {
  background-color: #002244; /* Darker blue on hover */
  transform: translateY(-2px);
}

.page-blog-industry-news__cta-banner {
  background: linear-gradient(90deg, #003366 0%, #0055aa 100%); /* Deep blue gradient */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-blog-industry-news__cta-title {
  font-size: 2.8em;
  color: #FFCC00; /* Gold for CTA title */
  margin-bottom: 20px;
}

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

/* Responsive adjustments */
@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__section-title {
    font-size: 2em;
  }
  .page-blog-industry-news__article-image,
  .page-blog-industry-news__innovation-image,
  .page-blog-industry-news__full-width-image {
    height: 200px; /* Ensure images are not too tall on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-section {
    padding: 60px 20px;
    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__intro-section,
  .page-blog-industry-news__trends-section,
  .page-blog-industry-news__regulatory-section,
  .page-blog-industry-news__innovation-section,
  .page-blog-industry-news__related-articles {
    padding: 40px 0;
  }
  .page-blog-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__text-content {
    font-size: 1em;
  }
  .page-blog-industry-news__article-grid,
  .page-blog-industry-news__innovation-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-industry-news__article-image,
  .page-blog-industry-news__innovation-image,
  .page-blog-industry-news__full-width-image {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
    min-height: 200px; /* Minimum height for content images */
    width: 100%; /* Explicitly set width to 100% */
  }
  .page-blog-industry-news__article-card .page-blog-industry-news__article-image,
  .page-blog-industry-news__innovation-item .page-blog-industry-news__innovation-image {
    height: 200px; /* Enforce minimum height for card images */
  }
  .page-blog-industry-news__cta-banner {
    padding: 50px 20px;
  }
  .page-blog-industry-news__cta-title {
    font-size: 2em;
  }
  .page-blog-industry-news__cta-description {
    font-size: 1em;
  }
  .page-blog-industry-news__cta-button {
    padding: 12px 25px;
  }
  /* Ensure no horizontal scrolling */
  .page-blog-industry-news__container {
    overflow-x: hidden;
  }
  .page-blog-industry-news__hero-section {
    width: 100%; /* Ensure hero section does not cause overflow */
    box-sizing: border-box;
  }
}

@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.5em;
  }
  .page-blog-industry-news__cta-title {
    font-size: 1.8em;
  }
}