/* style/blog-bj27-promotion-terms-explained.css */
.page-blog-bj27-promotion-terms-explained {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-bottom: 40px;
}

.page-blog-bj27-promotion-terms-explained__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  background-color: #08160F;
}

.page-blog-bj27-promotion-terms-explained__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-bj27-promotion-terms-explained__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-bj27-promotion-terms-explained__hero-content {
  max-width: 900px;
  margin: 20px auto 40px auto;
  padding: 0 20px;
  text-align: center;
  z-index: 1;
}

.page-blog-bj27-promotion-terms-explained__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-bj27-promotion-terms-explained__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-bj27-promotion-terms-explained__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F; /* Background */
  border-radius: 8px;
}

.page-blog-bj27-promotion-terms-explained__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-bj27-promotion-terms-explained__section-title {
  font-size: 2.2rem;
  color: #F2FFF6; /* Text Main */
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 2px solid #2E7A4E; /* Border */
  padding-bottom: 10px;
}

.page-blog-bj27-promotion-terms-explained__sub-title {
  font-size: 1.6rem;
  color: #22C768; /* Auxiliary Color */
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-blog-bj27-promotion-terms-explained__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-bj27-promotion-terms-explained__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-bj27-promotion-terms-explained__btn-primary,
.page-blog-bj27-promotion-terms-explained__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-blog-bj27-promotion-terms-explained__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
  margin-right: 15px;
}

.page-blog-bj27-promotion-terms-explained__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-bj27-promotion-terms-explained__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Button color */
  border: 2px solid #2AD16F;
}

.page-blog-bj27-promotion-terms-explained__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-blog-bj27-promotion-terms-explained__cta-bottom {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* FAQ Section */
.page-blog-bj27-promotion-terms-explained__faq-list {
  margin-top: 40px;
}

.page-blog-bj27-promotion-terms-explained__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-bj27-promotion-terms-explained__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  user-select: none;
  list-style: none; /* Remove default marker for details/summary */
}

.page-blog-bj27-promotion-terms-explained__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-bj27-promotion-terms-explained__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F; /* Accent color */
  transition: transform 0.3s ease;
}

.page-blog-bj27-promotion-terms-explained__faq-item[open] .page-blog-bj27-promotion-terms-explained__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-bj27-promotion-terms-explained__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-bj27-promotion-terms-explained__hero-content {
    max-width: 768px;
  }

  .page-blog-bj27-promotion-terms-explained__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-bj27-promotion-terms-explained__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-bj27-promotion-terms-explained {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-bj27-promotion-terms-explained__hero-section {
    padding: 10px 15px;
  }

  .page-blog-bj27-promotion-terms-explained__hero-image-wrapper {
    max-height: 400px;
  }

  .page-blog-bj27-promotion-terms-explained__hero-content {
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .page-blog-bj27-promotion-terms-explained__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-bj27-promotion-terms-explained__description {
    font-size: 1rem;
  }

  .page-blog-bj27-promotion-terms-explained__content-area,
  .page-blog-bj27-promotion-terms-explained__container {
    padding: 20px 15px;
  }

  .page-blog-bj27-promotion-terms-explained__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-bj27-promotion-terms-explained__sub-title {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-bj27-promotion-terms-explained__text-block {
    font-size: 0.95rem;
  }

  .page-blog-bj27-promotion-terms-explained__image-content {
    margin: 20px 0;
  }

  /* Mobile responsive for images, videos, and buttons */
  .page-blog-bj27-promotion-terms-explained img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-bj27-promotion-terms-explained__section,
  .page-blog-bj27-promotion-terms-explained__card,
  .page-blog-bj27-promotion-terms-explained__container,
  .page-blog-bj27-promotion-terms-explained__hero-section,
  .page-blog-bj27-promotion-terms-explained__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-bj27-promotion-terms-explained__btn-primary,
  .page-blog-bj27-promotion-terms-explained__btn-secondary,
  .page-blog-bj27-promotion-terms-explained a[class*="button"],
  .page-blog-bj27-promotion-terms-explained 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-left: 15px;
    padding-right: 15px;
    margin-right: 0 !important; /* Remove margin for stacked buttons */
  }

  .page-blog-bj27-promotion-terms-explained__cta-bottom {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .page-blog-bj27-promotion-terms-explained__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-bj27-promotion-terms-explained__faq-answer {
    padding: 0 20px 15px;
  }
}