/* style/resources-clb88-industry-news.css */
.page-resources-clb88-industry-news {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark grey for readability on light backgrounds */
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-resources-clb88-industry-news__hero {
  position: relative;
  background: linear-gradient(135deg, #1A237E, #3f479a); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Ensure sufficient height */
  overflow: hidden;
}

.page-resources-clb88-industry-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2; /* Subtle background image */
}

.page-resources-clb88-industry-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-clb88-industry-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-resources-clb88-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-clb88-industry-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0; /* Light grey for contrast on dark blue */
}

/* CTA Button */
.page-resources-clb88-industry-news__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color */
  color: #1A237E; /* Main color for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-clb88-industry-news__cta-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-clb88-industry-news__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-clb88-industry-news__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Sections */
.page-resources-clb88-industry-news__section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-resources-clb88-industry-news__section:last-of-type {
  border-bottom: none;
}

.page-resources-clb88-industry-news__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-clb88-industry-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Auxiliary color */
  border-radius: 2px;
}

.page-resources-clb88-industry-news__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444444;
}

.page-resources-clb88-industry-news__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Articles Grid */
.page-resources-clb88-industry-news__articles-grid,
.page-resources-clb88-industry-news__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-clb88-industry-news__article-card,
.page-resources-clb88-industry-news__promotion-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-clb88-industry-news__article-card:hover,
.page-resources-clb88-industry-news__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-clb88-industry-news__article-image,
.page-resources-clb88-industry-news__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-clb88-industry-news__article-title,
.page-resources-clb88-industry-news__promotion-title {
  font-size: 1.4em;
  color: #1A237E;
  margin: 20px 20px 10px 20px;
  min-height: 60px; /* Ensure consistent height for titles */
}

.page-resources-clb88-industry-news__article-excerpt,
.page-resources-clb88-industry-news__promotion-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  flex-grow: 1;
}

.page-resources-clb88-industry-news__read-more {
  display: inline-block;
  color: #FFD700;
  background-color: #1A237E;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 0 8px 8px; /* Rounded bottom corners */
  margin-top: 20px;
  text-align: center;
  transition: background-color 0.3s ease;
  align-self: flex-start; /* Align button to start */
  margin: auto 20px 20px 20px; /* Push to bottom */
}

.page-resources-clb88-industry-news__read-more:hover {
  background-color: #3f479a;
  color: #FFFFFF;
}

/* Content with Image */
.page-resources-clb88-industry-news__content-with-image {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

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

.page-resources-clb88-industry-news__image-wrapper {
  flex: 1;
}

.page-resources-clb88-industry-news__image-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Lists */
.page-resources-clb88-industry-news__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-resources-clb88-industry-news__list li {
  background-color: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700;
  font-size: 1.05em;
  color: #444444;
}

.page-resources-clb88-industry-news__list li strong {
  color: #1A237E;
}

/* FAQ Accordion */
.page-resources-clb88-industry-news__accordion {
  margin-top: 30px;
}

.page-resources-clb88-industry-news__accordion-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-clb88-industry-news__accordion-header {
  width: 100%;
  background-color: #1A237E;
  color: #FFD700;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-clb88-industry-news__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-clb88-industry-news__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-clb88-industry-news__accordion-content {
  padding: 0 25px;
  background-color: #fcfcfc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-clb88-industry-news__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555555;
}

/* Call to Action Banner */
.page-resources-clb88-industry-news__cta-banner {
  background: linear-gradient(45deg, #FFD700, #e5c100); /* Gold gradient */
  color: #1A237E;
  text-align: center;
  padding: 70px 0;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-clb88-industry-news__cta-banner-content {
  max-width: 900px;
}

.page-resources-clb88-industry-news__cta-banner-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A237E;
}

.page-resources-clb88-industry-news__cta-banner-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333333;
}

.page-resources-clb88-industry-news__inline-link {
  color: #1A237E;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-clb88-industry-news__inline-link:hover {
  color: #3f479a;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-clb88-industry-news__hero-title {
    font-size: 2.5em;
  }
  .page-resources-clb88-industry-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-clb88-industry-news__section-title {
    font-size: 2em;
  }
  .page-resources-clb88-industry-news__content-with-image {
    flex-direction: column;
  }
  .page-resources-clb88-industry-news__image-wrapper--right {
    order: -1; /* Image on top for smaller screens */
  }
  .page-resources-clb88-industry-news__cta-banner-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-clb88-industry-news__hero {
    padding: 60px 0;
  }
  .page-resources-clb88-industry-news__hero-title {
    font-size: 2em;
  }
  .page-resources-clb88-industry-news__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-clb88-industry-news__section {
    padding: 40px 0;
  }
  .page-resources-clb88-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-resources-clb88-industry-news__articles-grid,
  .page-resources-clb88-industry-news__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-clb88-industry-news__cta-banner-title {
    font-size: 1.8em;
  }
  .page-resources-clb88-industry-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-clb88-industry-news__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-clb88-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-resources-clb88-industry-news__hero-subtitle {
    font-size: 0.9em;
  }
  .page-resources-clb88-industry-news__section-title {
    font-size: 1.5em;
  }
  .page-resources-clb88-industry-news__cta-banner-title {
    font-size: 1.5em;
  }
}