/* style/blog-latest-promotions-analysis.css */

:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-card-bg: #11271B;
  --page-background: #08160F;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green-color: #0A4B2C;
}

.page-blog-latest-promotions-analysis {
  background-color: var(--page-background); /* Dark background from custom palette */
  color: var(--page-text-main); /* Light text for dark background */
}

.page-blog-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small decorative padding-top */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-blog-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit height for hero image */
  margin-bottom: 30px;
  border-radius: 10px;
}

.page-blog-latest-promotions-analysis__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--page-text-main);
}

.page-blog-latest-promotions-analysis__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--page-gold-color);
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-blog-latest-promotions-analysis__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--page-text-secondary);
}

.page-blog-latest-promotions-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-blog-latest-promotions-analysis__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff; /* White text for gradient button */
  border: 2px solid var(--page-glow-color);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: var(--page-glow-color); /* Glow color for secondary button text */
  border: 2px solid var(--page-glow-color);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.2);
}

.page-blog-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--page-glow-color);
  color: var(--page-background); /* Dark text on hover for secondary button */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(87, 227, 141, 0.4);
}

.page-blog-latest-promotions-analysis__content-section {
  padding: 60px 0;
}

.page-blog-latest-promotions-analysis__content-section.page-blog-latest-promotions-analysis__dark-bg {
  background-color: var(--page-background);
  color: var(--page-text-main);
}

.page-blog-latest-promotions-analysis__content-section.page-blog-latest-promotions-analysis__light-bg {
  background-color: var(--page-card-bg); /* Use card background for light sections */
  color: var(--page-text-main);
}

.page-blog-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--page-gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-blog-latest-promotions-analysis__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--page-glow-color);
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 4px solid var(--page-glow-color);
  padding-left: 15px;
}

.page-blog-latest-promotions-analysis__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--page-text-secondary);
}

.page-blog-latest-promotions-analysis__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-border-color);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-latest-promotions-analysis__image-content--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.page-blog-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-latest-promotions-analysis__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-main);
}

.page-blog-latest-promotions-analysis__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: 600;
  font-size: 1.15em;
  cursor: pointer;
  list-style: none;
  color: var(--page-glow-color);
}

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

.page-blog-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog-latest-promotions-analysis__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--page-text-secondary);
}

.page-blog-latest-promotions-analysis__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-analysis__section-title {
    font-size: 2em;
  }

  .page-blog-latest-promotions-analysis__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions-analysis__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-latest-promotions-analysis__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--page-gold-color);
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
    /* No fixed font-size, rely on clamp or relative units */
  }

  .page-blog-latest-promotions-analysis__hero-description {
    font-size: 1em;
  }

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

  .page-blog-latest-promotions-analysis__btn-primary,
  .page-blog-latest-promotions-analysis__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    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-latest-promotions-analysis__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-latest-promotions-analysis__content-section {
    padding: 40px 0;
  }

  .page-blog-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-latest-promotions-analysis__sub-title {
    font-size: 1.4em;
  }

  .page-blog-latest-promotions-analysis__text-block {
    font-size: 0.95em;
  }

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

  .page-blog-latest-promotions-analysis__section,
  .page-blog-latest-promotions-analysis__card,
  .page-blog-latest-promotions-analysis__container,
  .page-blog-latest-promotions-analysis__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-latest-promotions-analysis__hero-image {
    max-height: 400px; /* Adjust max height for mobile hero */
  }

  .page-blog-latest-promotions-analysis__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

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