/* style/blog-latest-promotions-analysis.css */
:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --background-color: #0A0A0A;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for dark body background */
  background-color: var(--background-color); /* Matches shared.css body background */
}

.page-blog-latest-promotions-analysis__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Align items to start for image-then-text */
  position: relative;
  overflow: hidden;
}

.page-blog-latest-promotions-analysis__hero-content-wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column; /* Image then text */
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px; /* Space between image and text */
}

.page-blog-latest-promotions-analysis__hero-text-container {
  text-align: center;
  max-width: 800px;
  padding: 0 15px;
}

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

.page-blog-latest-promotions-analysis__hero-description {
  font-size: 1.15rem;
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions-analysis__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-blog-latest-promotions-analysis__cta-button--secondary {
  background: var(--primary-color);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.3);
}

.page-blog-latest-promotions-analysis__cta-button--secondary:hover {
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.5);
}

.page-blog-latest-promotions-analysis__cta-button--outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.page-blog-latest-promotions-analysis__cta-button--outline:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.3);
}

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

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

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

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

.page-blog-latest-promotions-analysis__section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-latest-promotions-analysis__sub-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-latest-promotions-analysis__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-main-color);
}

.page-blog-latest-promotions-analysis__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-latest-promotions-analysis__list--ordered {
  list-style-type: decimal;
}

.page-blog-latest-promotions-analysis__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-latest-promotions-analysis__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

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

.page-blog-latest-promotions-analysis__button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.page-blog-latest-promotions-analysis__button-group--center {
  justify-content: center;
}

/* FAQ Section Styles */
.page-blog-latest-promotions-analysis__faq-list {
  margin-top: 30px;
}

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

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

.page-blog-latest-promotions-analysis__faq-question:hover {
  background-color: #1e1e1e;
}

.page-blog-latest-promotions-analysis__faq-title {
  margin: 0;
  color: inherit;
}

.page-blog-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

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

.page-blog-latest-promotions-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-latest-promotions-analysis__faq-item.active .page-blog-latest-promotions-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 15px 25px;
}

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

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

  .page-blog-latest-promotions-analysis__section-title {
    font-size: 2.2rem;
  }

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

  .page-blog-latest-promotions-analysis__paragraph,
  .page-blog-latest-promotions-analysis__list-item {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions-analysis__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile header spacing */
  }

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

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

  .page-blog-latest-promotions-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-latest-promotions-analysis__button-group {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px;
    padding: 0 15px;
  }

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

  .page-blog-latest-promotions-analysis__section-title {
    font-size: 1.8rem;
  }

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

  .page-blog-latest-promotions-analysis__paragraph,
  .page-blog-latest-promotions-analysis__list-item,
  .page-blog-latest-promotions-analysis__faq-question {
    font-size: 0.95rem;
  }

  .page-blog-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-latest-promotions-analysis__section,
  .page-blog-latest-promotions-analysis__card,
  .page-blog-latest-promotions-analysis__container,
  .page-blog-latest-promotions-analysis__image-wrapper,
  .page-blog-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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