/* style/blog-latest-promotions-analysis.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --page-bg: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  /* Ensure body padding-top is handled by shared.css */
}

.page-blog-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Light text on dark body background (var(--bg-dark)) */
  background-color: var(--page-bg);
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom padding */
  text-align: center;
  overflow: hidden;
  background-color: var(--deep-green);
}

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

.page-blog-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 20px; /* Space between image and content */
  padding: 0 20px;
}

.page-blog-latest-promotions-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-latest-promotions-analysis__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--page-bg);
  color: var(--text-main);
}

.page-blog-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gold-color);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-latest-promotions-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-blog-latest-promotions-analysis__sub-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-latest-promotions-analysis p {
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-blog-latest-promotions-analysis strong {
  color: var(--gold-color);
}

.page-blog-latest-promotions-analysis__btn-primary,
.page-blog-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-latest-promotions-analysis__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* Always white text on dark button */
  border: 2px solid var(--primary-color);
}

.page-blog-latest-promotions-analysis__btn-primary:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-latest-promotions-analysis__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-latest-promotions-analysis__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-latest-promotions-analysis__button-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__button-group .page-blog-latest-promotions-analysis__btn-primary,
.page-blog-latest-promotions-analysis__button-group .page-blog-latest-promotions-analysis__btn-secondary {
  flex: 1;
  min-width: 180px; /* Ensure buttons don't get too small */
  max-width: 300px;
}

.page-blog-latest-promotions-analysis__image-wrapper {
  margin: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-blog-latest-promotions-analysis__faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--divider-color);
}

.page-blog-latest-promotions-analysis__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-top: none;
  margin-bottom: 10px;
  border-radius: 0 0 8px 8px;
}

.page-blog-latest-promotions-analysis__faq-item:first-of-type {
  border-top: 1px solid var(--border-color);
  border-radius: 8px 8px 0 0;
}

.page-blog-latest-promotions-analysis__faq-item:last-of-type {
  margin-bottom: 0;
  border-radius: 0 0 8px 8px;
}

.page-blog-latest-promotions-analysis__faq-item[open] {
  background-color: var(--deep-green);
}

.page-blog-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog-latest-promotions-analysis__faq-question:hover {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-blog-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-blog-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-color);
  margin-left: 15px;
}

.page-blog-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  overflow: hidden;
}

.page-blog-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0;
}

.page-blog-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__cta-buttons .page-blog-latest-promotions-analysis__btn-primary,
.page-blog-latest-promotions-analysis__cta-buttons .page-blog-latest-promotions-analysis__btn-secondary {
  flex-basis: auto;
  min-width: 220px;
  max-width: 350px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-analysis__hero-content {
    padding: 0 15px;
  }

  .page-blog-latest-promotions-analysis__content-area {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions-analysis {
    font-size: 15px;
    line-height: 1.55;
  }

  .page-blog-latest-promotions-analysis__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-latest-promotions-analysis__hero-description {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  }

  .page-blog-latest-promotions-analysis__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-blog-latest-promotions-analysis__sub-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-latest-promotions-analysis__content-area {
    padding: 30px 15px;
  }

  .page-blog-latest-promotions-analysis__btn-primary,
  .page-blog-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-latest-promotions-analysis__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-promotions-analysis__button-group .page-blog-latest-promotions-analysis__btn-primary,
  .page-blog-latest-promotions-analysis__button-group .page-blog-latest-promotions-analysis__btn-secondary {
    min-width: unset;
    max-width: 100%;
  }

  .page-blog-latest-promotions-analysis__image-wrapper,
  .page-blog-latest-promotions-analysis__video-container,
  .page-blog-latest-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-blog-latest-promotions-analysis img,
  .page-blog-latest-promotions-analysis video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1.05rem;
  }

  .page-blog-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
  }

  .page-blog-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-blog-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }

  .page-blog-latest-promotions-analysis__cta-buttons .page-blog-latest-promotions-analysis__btn-primary,
  .page-blog-latest-promotions-analysis__cta-buttons .page-blog-latest-promotions-analysis__btn-secondary {
    min-width: unset;
    max-width: 100%;
  }
}