.page-news-industry-updates {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #f8f9fa; /* Light background as per body default */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-news-industry-updates__hero-section {
  background-color: #e0f2f7; /* Light blue tint for hero */
  padding: 60px 20px;
  text-align: center;
}

.page-news-industry-updates__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-news-industry-updates__main-title {
  font-size: 36px;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.page-news-industry-updates__intro-description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-updates__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-news-industry-updates__btn-primary,
.page-news-industry-updates__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-updates__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-news-industry-updates__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news-industry-updates__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-news-industry-updates__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news-industry-updates__section {
  padding: 50px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-news-industry-updates__section:last-of-type {
  border-bottom: none;
}

.page-news-industry-updates__section-title {
  font-size: 28px;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-news-industry-updates__sub-title {
  font-size: 22px;
  color: #333333;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-news-industry-updates__paragraph {
  font-size: 16px;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-news-industry-updates__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Ensure images in content areas are not too small */
.page-news-industry-updates__content-area img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-news-industry-updates__main-title {
    font-size: 32px;
  }

  .page-news-industry-updates__intro-description {
    font-size: 16px;
  }

  .page-news-industry-updates__section-title {
    font-size: 24px;
  }

  .page-news-industry-updates__sub-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-news-industry-updates {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-news-industry-updates__hero-section {
    padding: 40px 15px;
  }

  .page-news-industry-updates__main-title {
    font-size: 28px;
  }

  .page-news-industry-updates__intro-description {
    font-size: 15px;
  }

  .page-news-industry-updates__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-industry-updates__btn-primary,
  .page-news-industry-updates__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 15px;
  }

  .page-news-industry-updates__section {
    padding: 30px 0;
  }

  .page-news-industry-updates__section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .page-news-industry-updates__sub-title {
    font-size: 18px;
    margin-top: 25px;
  }

  .page-news-industry-updates__paragraph {
    font-size: 15px;
  }

  .page-news-industry-updates__image {
    margin: 20px auto;
    border-radius: 4px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news-industry-updates__container {
    padding: 0 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* General image responsive styles */
.page-news-industry-updates img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-news-industry-updates__section,
.page-news-industry-updates__card,
.page-news-industry-updates__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure content area images are not scaled down to tiny sizes by general rules */
.page-news-industry-updates__content-area img {
  max-width: 100%; /* Ensure it fits container */
  height: auto;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-news-industry-updates__content-area img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset !important; /* Allow smaller on mobile if container is small, but still > 200px if container allows */
    min-height: unset !important;
  }
  .page-news-industry-updates__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}