/* style/blog-bl88-latest-promotions-analysis.css */
.page-blog-bl88-latest-promotions-analysis {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-bl88-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header-offset */
  text-align: center;
}

.page-blog-bl88-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-bl88-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-bl88-latest-promotions-analysis__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 15px;
}

.page-blog-bl88-latest-promotions-analysis__main-title {
  font-size: clamp(2em, 5vw, 3em);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-bl88-latest-promotions-analysis__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-bl88-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-bl88-latest-promotions-analysis__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-bl88-latest-promotions-analysis__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-blog-bl88-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-bl88-latest-promotions-analysis__section-header {
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-bl88-latest-promotions-analysis__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-blog-bl88-latest-promotions-analysis__section-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #11A84E 0%, #22C768 100%);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-blog-bl88-latest-promotions-analysis__text-block {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-bl88-latest-promotions-analysis__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px; /* Constrain max width for content images */
}

.page-blog-bl88-latest-promotions-analysis__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.page-blog-bl88-latest-promotions-analysis__card {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

.page-blog-bl88-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-bl88-latest-promotions-analysis__card-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-bl88-latest-promotions-analysis__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-blog-bl88-latest-promotions-analysis__ordered-list,
.page-blog-bl88-latest-promotions-analysis__unordered-list {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-bl88-latest-promotions-analysis__ordered-list li,
.page-blog-bl88-latest-promotions-analysis__unordered-list li {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.6;
}

.page-blog-bl88-latest-promotions-analysis__ordered-list strong,
.page-blog-bl88-latest-promotions-analysis__unordered-list strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-bl88-latest-promotions-analysis__faq-section {
  margin-top: 40px;
  border-top: 1px solid #2E7A4E;
  padding-top: 20px;
}

.page-blog-bl88-latest-promotions-analysis__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-blog-bl88-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green for summary */
  user-select: none;
  list-style: none;
}

.page-blog-bl88-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-bl88-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-blog-bl88-latest-promotions-analysis__faq-item[open] .page-blog-bl88-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-bl88-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-blog-bl88-latest-promotions-analysis__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-bl88-latest-promotions-analysis__hero-section {
    padding: 40px 15px;
  }
  .page-blog-bl88-latest-promotions-analysis__content-area {
    padding: 30px 15px;
  }
  .page-blog-bl88-latest-promotions-analysis__grid-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-blog-bl88-latest-promotions-analysis__hero-section {
    padding: 20px 10px;
    padding-top: 10px !important;
  }
  .page-blog-bl88-latest-promotions-analysis__hero-content {
    margin-top: 20px;
    padding: 0 10px;
  }
  .page-blog-bl88-latest-promotions-analysis__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }
  .page-blog-bl88-latest-promotions-analysis__description {
    font-size: 1em;
  }
  .page-blog-bl88-latest-promotions-analysis__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
    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;
  }
  .page-blog-bl88-latest-promotions-analysis__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-blog-bl88-latest-promotions-analysis__content-area {
    padding: 20px 10px;
  }
  .page-blog-bl88-latest-promotions-analysis__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-blog-bl88-latest-promotions-analysis__text-block {
    font-size: 0.95em;
  }
  .page-blog-bl88-latest-promotions-analysis__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-bl88-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-bl88-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-blog-bl88-latest-promotions-analysis__section,
  .page-blog-bl88-latest-promotions-analysis__card,
  .page-blog-bl88-latest-promotions-analysis__container,
  .page-blog-bl88-latest-promotions-analysis__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-bl88-latest-promotions-analysis__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-bl88-latest-promotions-analysis__faq-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-bl88-latest-promotions-analysis__ordered-list,
  .page-blog-bl88-latest-promotions-analysis__unordered-list {
    margin-left: 0;
    padding-left: 20px;
  }
}