/* style/news-industry-news-brief.css */
.page-news-industry-news-brief {
  font-family: Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
}

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

.page-news-industry-news-brief__section {
  padding: 60px 0;
}

.page-news-industry-news-brief__section-title {
  font-size: 38px;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-news-industry-news-brief__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: #017439;
}

.page-news-industry-news-brief__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-news-industry-news-brief__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-news-industry-news-brief__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-news-industry-news-brief__main-title {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-news-industry-news-brief__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-news-industry-news-brief__hero-cta-button {
  display: inline-block;
  background-color: #C30808;
  color: #FFFF00;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news-industry-news-brief__hero-cta-button:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

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

.page-news-industry-news-brief__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;
  display: flex;
  flex-direction: column;
}

.page-news-industry-news-brief__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-news-industry-news-brief__news-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-news-industry-news-brief__news-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news-industry-news-brief__news-card-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news-industry-news-brief__news-card-title a {
  color: #017439;
  text-decoration: none;
}

.page-news-industry-news-brief__news-card-title a:hover {
  text-decoration: underline;
}

.page-news-industry-news-brief__news-card-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news-industry-news-brief__read-more-link {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
}

.page-news-industry-news-brief__read-more-link:hover {
  text-decoration: underline;
}

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

.page-news-industry-news-brief__feature-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news-industry-news-brief__feature-title {
  font-size: 24px;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news-industry-news-brief__feature-text {
  font-size: 16px;
  color: #555555;
}

.page-news-industry-news-brief__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-news-industry-news-brief__cta-button--primary {
  background-color: #017439;
  color: #ffffff;
  border-color: #017439;
}

.page-news-industry-news-brief__cta-button--primary:hover {
  background-color: #005a2d;
  border-color: #005a2d;
}

.page-news-industry-news-brief__cta-button--secondary {
  background-color: #ffffff;
  color: #017439;
  border-color: #017439;
}

.page-news-industry-news-brief__cta-button--secondary:hover {
  background-color: #f0f0f0;
  color: #005a2d;
  border-color: #005a2d;
}

.page-news-industry-news-brief__market-growth .page-news-industry-news-brief__container {
  text-align: center;
}

.page-news-industry-news-brief__growth-factors {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-news-industry-news-brief__growth-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-news-industry-news-brief__growth-title {
  font-size: 22px;
  color: #017439;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news-industry-news-brief__growth-text {
  font-size: 16px;
  color: #555555;
}

.page-news-industry-news-brief__bj88-insights {
  background-color: #f4fcf7;
}

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

.page-news-industry-news-brief__bj88-feature-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: 20px;
}

.page-news-industry-news-brief__bj88-feature-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-news-industry-news-brief__bj88-feature-title {
  font-size: 24px;
  color: #017439;
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: bold;
}

.page-news-industry-news-brief__bj88-feature-text {
  font-size: 16px;
  color: #555555;
  padding: 0 20px;
}

.page-news-industry-news-brief__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-news-industry-news-brief__expert-tips .page-news-industry-news-brief__container {
  text-align: center;
}

.page-news-industry-news-brief__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-news-industry-news-brief__tip-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-news-industry-news-brief__tip-title {
  font-size: 22px;
  color: #017439;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news-industry-news-brief__tip-text {
  font-size: 16px;
  color: #555555;
}

.page-news-industry-news-brief__future-outlook {
  background-color: #017439;
  color: #ffffff;
}

.page-news-industry-news-brief__future-outlook .page-news-industry-news-brief__section-title,
.page-news-industry-news-brief__future-outlook .page-news-industry-news-brief__section-description {
  color: #ffffff;
}

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

.page-news-industry-news-brief__outlook-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news-industry-news-brief__outlook-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news-industry-news-brief__outlook-text {
  font-size: 16px;
  color: #f0f0f0;
}

.page-news-industry-news-brief__faq-section {
  background-color: #f8f8f8;
}

.page-news-industry-news-brief__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-news-industry-news-brief__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-news-industry-news-brief__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #fcfcfc;
  transition: background-color 0.3s ease;
}

.page-news-industry-news-brief__faq-question:hover {
  background-color: #f0f0f0;
}

.page-news-industry-news-brief__faq-title {
  font-size: 18px;
  color: #017439;
  margin: 0;
  font-weight: bold;
}

.page-news-industry-news-brief__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #017439;
  transition: transform 0.3s ease;
}

.page-news-industry-news-brief__faq-item.active .page-news-industry-news-brief__faq-toggle {
  transform: rotate(45deg);
}

.page-news-industry-news-brief__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-news-industry-news-brief__faq-item.active .page-news-industry-news-brief__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-news-industry-news-brief__faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news-industry-news-brief__main-title {
    font-size: 44px;
  }
  .page-news-industry-news-brief__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-news-industry-news-brief__hero-section {
    flex-direction: column;
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news-industry-news-brief__main-title {
    font-size: 36px;
  }
  .page-news-industry-news-brief__hero-description {
    font-size: 18px;
  }
  .page-news-industry-news-brief__hero-cta-button {
    font-size: 18px;
    padding: 12px 25px;
  }
  .page-news-industry-news-brief__section {
    padding: 40px 0;
  }
  .page-news-industry-news-brief__section-title {
    font-size: 28px;
  }
  .page-news-industry-news-brief__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-news-industry-news-brief__news-grid,
  .page-news-industry-news-brief__feature-grid,
  .page-news-industry-news-brief__growth-factors,
  .page-news-industry-news-brief__bj88-features,
  .page-news-industry-news-brief__tips-list,
  .page-news-industry-news-brief__outlook-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news-industry-news-brief__news-card-image,
  .page-news-industry-news-brief__bj88-feature-image {
    height: 200px;
  }
  .page-news-industry-news-brief__news-card-title,
  .page-news-industry-news-brief__feature-title,
  .page-news-industry-news-brief__growth-title,
  .page-news-industry-news-brief__bj88-feature-title,
  .page-news-industry-news-brief__tip-title,
  .page-news-industry-news-brief__outlook-title {
    font-size: 20px;
  }
  .page-news-industry-news-brief__news-card-text,
  .page-news-industry-news-brief__feature-text,
  .page-news-industry-news-brief__growth-text,
  .page-news-industry-news-brief__bj88-feature-text,
  .page-news-industry-news-brief__tip-text,
  .page-news-industry-news-brief__outlook-text,
  .page-news-industry-news-brief__faq-title,
  .page-news-industry-news-brief__faq-answer p {
    font-size: 15px;
  }

  /* Image responsive rules */
  .page-news-industry-news-brief img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news-industry-news-brief__hero-image-wrapper,
  .page-news-industry-news-brief__news-card,
  .page-news-industry-news-brief__feature-item,
  .page-news-industry-news-brief__growth-item,
  .page-news-industry-news-brief__bj88-feature-card,
  .page-news-industry-news-brief__tip-item,
  .page-news-industry-news-brief__outlook-item,
  .page-news-industry-news-brief__faq-item,
  .page-news-industry-news-brief__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-news-industry-news-brief__hero-image-wrapper {
    position: relative;
    height: 250px;
    margin-top: 20px;
  }

  /* Button responsive rules */
  .page-news-industry-news-brief__cta-button,
  .page-news-industry-news-brief__hero-cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-news-industry-news-brief__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-news-industry-news-brief__button-group .page-news-industry-news-brief__cta-button {
    margin: 0;
  }
}