.page-news-industry-latest {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #f8f8f8);
}

.page-news-industry-latest__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-news-industry-latest__hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
}

.page-news-industry-latest__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area, may crop */
  display: block;
}

.page-news-industry-latest__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3); /* Slightly darker background for text readability */
  border-radius: 8px;
  margin-top: -100px; /* Pull content up over image slightly for visual flow */
}

.page-news-industry-latest__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-news-industry-latest__description {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-industry-latest__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-news-industry-latest__btn-primary {
  background: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-news-industry-latest__btn-primary:hover {
  background: #d46a00;
  border-color: #d46a00;
}

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

.page-news-industry-latest__btn-secondary:hover {
  background: #e0f2f7;
  color: #1a8bbd;
  border-color: #1a8bbd;
}

.page-news-industry-latest__section {
  padding: 60px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

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

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

.page-news-industry-latest__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-news-industry-latest__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
  max-width: 100%;
  box-sizing: border-box;
}

.page-news-industry-latest__text-block p {
  margin-bottom: 1em;
}

.page-news-industry-latest__text-block strong {
  color: #26A9E0;
}

.page-news-industry-latest__article-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.page-news-industry-latest__article-figure {
  margin-bottom: 30px;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-news-industry-latest__article-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news-industry-latest__article-subtitle {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

/* FAQ Section */
details.page-news-industry-latest__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

details.page-news-industry-latest__faq-item summary.page-news-industry-latest__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
}

details.page-news-industry-latest__faq-item summary.page-news-industry-latest__faq-question::-webkit-details-marker {
  display: none;
}

details.page-news-industry-latest__faq-item summary.page-news-industry-latest__faq-question:hover {
  background: #f5f5f5;
}

.page-news-industry-latest__faq-qtext {
  flex: 1;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.5;
  text-align: left;
}

.page-news-industry-latest__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #26A9E0;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-news-industry-latest__faq-item .page-news-industry-latest__faq-answer {
  padding: 0 25px 20px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
  color: #555555;
}

details.page-news-industry-latest__faq-item .page-news-industry-latest__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news-industry-latest__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-news-industry-latest__main-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
  }
  .page-news-industry-latest__description {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  }
  .page-news-industry-latest__btn-primary,
  .page-news-industry-latest__btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-news-industry-latest__section {
    padding: 50px 15px;
  }
  .page-news-industry-latest__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 30px;
  }
  .page-news-industry-latest__article-subtitle {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  }
  details.page-news-industry-latest__faq-item summary.page-news-industry-latest__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-news-industry-latest__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-news-industry-latest__faq-item .page-news-industry-latest__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 768px) {
  .page-news-industry-latest__hero-section {
    min-height: 400px;
    padding-top: 10px; /* Ensure small top padding */
  }
  .page-news-industry-latest__hero-image img {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
    max-height: 300px; /* Limit image height */
  }
  .page-news-industry-latest__hero-content {
    margin-top: -60px; /* Adjust pull-up for mobile */
    padding: 25px 15px;
  }
  .page-news-industry-latest__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-news-industry-latest__description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 25px;
  }
  .page-news-industry-latest__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-industry-latest__btn-primary,
  .page-news-industry-latest__btn-secondary,
  .page-news-industry-latest a[class*="button"],
  .page-news-industry-latest a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    font-size: 1rem;
  }
  .page-news-industry-latest__section {
    padding: 40px 0;
  }
  .page-news-industry-latest__container {
    padding: 0 15px !important; /* Ensure padding for content */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news-industry-latest__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 25px;
  }
  .page-news-industry-latest__text-block,
  .page-news-industry-latest__article-body {
    font-size: 1rem;
    text-align: left;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-news-industry-latest__article-figure {
    margin-bottom: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news-industry-latest__article-figure img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news-industry-latest__article-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
  }
  details.page-news-industry-latest__faq-item summary.page-news-industry-latest__faq-question {
    padding: 15px;
    font-size: 0.95rem;
  }
  .page-news-industry-latest__faq-toggle {
    font-size: 20px;
    width: 20px;
  }
  details.page-news-industry-latest__faq-item .page-news-industry-latest__faq-answer {
    padding: 0 15px 15px;
  }
  .page-news-industry-latest__faq-answer p {
    font-size: 0.9rem;
  }
}