.page-blog-industry-news {
  color: #333333; /* Dark text for default white body background */
}

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

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

.page-blog-industry-news__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
  color: #ffffff;
}

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

.page-blog-industry-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-blog-industry-news__hero-button {
  display: inline-block;
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-industry-news__hero-button:hover {
  background-color: #0056b3;
}

.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: #007bff; /* Primary brand color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-blog-industry-news__intro-section .page-blog-industry-news__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.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;
}

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

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

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

.page-blog-industry-news__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog-industry-news__card-title a {
  color: #007bff; /* Primary brand color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-industry-news__card-title a:hover {
  color: #0056b3;
}

.page-blog-industry-news__card-summary {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-blog-industry-news__read-more-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-blog-industry-news__trend-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-blog-industry-news__trend-item:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image and text direction */
}

.page-blog-industry-news__trend-image {
  flex: 1;
  min-width: 400px; /* Ensure image isn't too small */
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-industry-news__trend-content {
  flex: 1;
  padding: 40px;
}

.page-blog-industry-news__trend-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-blog-industry-news__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-industry-news__regulatory-details,
.page-blog-industry-news__market-details {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-blog-industry-news__regulatory-image,
.page-blog-industry-news__market-image {
  flex: 1;
  min-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-industry-news__regulatory-list,
.page-blog-industry-news__market-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.page-blog-industry-news__regulatory-list li,
.page-blog-industry-news__market-list li {
  background-color: #ffffff;
  border-left: 5px solid #ffc107; /* Auxiliary color accent */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-industry-news__list-title {
  font-size: 1.4em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-blog-industry-news__tech-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.page-blog-industry-news__tech-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-blog-industry-news__tech-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-blog-industry-news__cta-section {
  background-color: #007bff; /* Primary brand color background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

.page-blog-industry-news__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for emphasis */
}

.page-blog-industry-news__cta-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

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

.page-blog-industry-news__cta-button--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333333;
}

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

.page-blog-industry-news__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.page-blog-industry-news__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* 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__trend-item {
    flex-direction: column;
  }
  .page-blog-industry-news__trend-item:nth-child(even) {
    flex-direction: column; /* Reset for smaller screens */
  }
  .page-blog-industry-news__trend-image {
    min-width: unset;
    width: 100%;
  }
  .page-blog-industry-news__regulatory-details,
  .page-blog-industry-news__market-details {
    flex-direction: column;
  }
  .page-blog-industry-news__regulatory-image,
  .page-blog-industry-news__market-image {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-industry-news__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-blog-industry-news__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-blog-industry-news__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .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__news-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-industry-news__trend-content,
  .page-blog-industry-news__regulatory-list li,
  .page-blog-industry-news__market-list li {
    padding: 20px;
  }
  .page-blog-industry-news__trend-title {
    font-size: 1.8em;
  }
  .page-blog-industry-news__list-title {
    font-size: 1.2em;
  }
  .page-blog-industry-news__tech-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-industry-news__cta-title {
    font-size: 2.2em;
  }
  .page-blog-industry-news__cta-description {
    font-size: 1.1em;
  }
  .page-blog-industry-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-industry-news__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Critical: Prevent content overflow on mobile */
  .page-blog-industry-news img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-industry-news {
    overflow-x: hidden;
  }
}

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

/* Ensure content images are never smaller than 200px display width/height in content area */
.page-blog-industry-news img:not(.page-blog-industry-news__hero-image) {
  min-width: 200px; /* Minimum display width */
  min-height: 200px; /* Minimum display height (for square images or if height is auto, still ensures a minimum visible area) */
}

@media (max-width: 768px) {
  .page-blog-industry-news img:not(.page-blog-industry-news__hero-image) {
    max-width: 100%; /* Ensure responsiveness */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px;
  }
}