/* style/blog-789cub-promotions-analysis.css */

/* Custom Colors */
:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient-start: #2AD16F;
  --color-button-gradient-end: #13994A;
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-blog-789cub-promotions-analysis {
  color: var(--color-text-main); /* Default text color for the page, based on dark body background */
  background-color: var(--color-background); /* Ensure consistent background, though body handles main */
}

.page-blog-789cub-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: var(--color-background);
  overflow: hidden;
}

.page-blog-789cub-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 675px;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-blog-789cub-promotions-analysis__hero-content {
  max-width: 900px;
  z-index: 1;
  color: var(--color-text-main);
}

.page-blog-789cub-promotions-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-text-main);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-789cub-promotions-analysis__description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--color-text-secondary);
}

.page-blog-789cub-promotions-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-789cub-promotions-analysis__btn-primary,
.page-blog-789cub-promotions-analysis__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
  width: auto;
  min-width: 180px;
}

.page-blog-789cub-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
  color: #ffffff; /* White text for contrast */
  border: 2px solid var(--color-button-gradient-start);
}

.page-blog-789cub-promotions-analysis__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--color-button-gradient-start), 0.4);
}

.page-blog-789cub-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: var(--color-button-gradient-start); /* Use start gradient color for text */
  border: 2px solid var(--color-button-gradient-start);
}

.page-blog-789cub-promotions-analysis__btn-secondary:hover {
  background-color: rgba(var(--color-button-gradient-start), 0.1);
  transform: translateY(-2px);
}

.page-blog-789cub-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--color-background); /* Consistent dark background */
  color: var(--color-text-main); /* Main text color */
}

.page-blog-789cub-promotions-analysis__article-body {
  line-height: 1.7;
}

.page-blog-789cub-promotions-analysis__section-title,
.page-blog-789cub-promotions-analysis__sub-section-title {
  color: var(--color-gold);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-789cub-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  border-bottom: 2px solid var(--color-divider);
  padding-bottom: 15px;
}

.page-blog-789cub-promotions-analysis__sub-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-primary);
}

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

.page-blog-789cub-promotions-analysis p a,
.page-blog-789cub-promotions-analysis li a {
  color: var(--color-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-789cub-promotions-analysis p a:hover,
.page-blog-789cub-promotions-analysis li a:hover {
  color: var(--color-glow);
}

.page-blog-789cub-promotions-analysis__article-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-blog-789cub-promotions-analysis__benefit-list,
.page-blog-789cub-promotions-analysis__terms-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-789cub-promotions-analysis__benefit-item,
.page-blog-789cub-promotions-analysis__terms-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: var(--color-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-789cub-promotions-analysis__benefit-item strong,
.page-blog-789cub-promotions-analysis__terms-item strong {
  color: var(--color-gold);
  margin-right: 10px;
  flex-shrink: 0;
}

.page-blog-789cub-promotions-analysis__faq-section {
  margin-top: 40px;
}

.page-blog-789cub-promotions-analysis__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-789cub-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--color-text-main);
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-border);
  list-style: none; /* For details summary */
}

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

.page-blog-789cub-promotions-analysis__faq-item[open] .page-blog-789cub-promotions-analysis__faq-question {
  border-bottom: 1px solid var(--color-divider);
}

.page-blog-789cub-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-789cub-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--color-gold);
}

.page-blog-789cub-promotions-analysis__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.page-blog-789cub-promotions-analysis__article-meta {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-align: right;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-789cub-promotions-analysis__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-789cub-promotions-analysis__main-title {
    font-size: 2.2rem;
  }

  .page-blog-789cub-promotions-analysis__description {
    font-size: 1rem;
  }

  .page-blog-789cub-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .page-blog-789cub-promotions-analysis__btn-primary,
  .page-blog-789cub-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-789cub-promotions-analysis__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-blog-789cub-promotions-analysis__sub-section-title {
    font-size: 1.4rem;
  }

  .page-blog-789cub-promotions-analysis p,
  .page-blog-789cub-promotions-analysis li {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-789cub-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-blog-789cub-promotions-analysis__hero-image,
  .page-blog-789cub-promotions-analysis__article-image {
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-789cub-promotions-analysis__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-789cub-promotions-analysis__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-blog-789cub-promotions-analysis__benefit-item,
  .page-blog-789cub-promotions-analysis__terms-item {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-blog-789cub-promotions-analysis__benefit-item strong,
  .page-blog-789cub-promotions-analysis__terms-item strong {
    margin-bottom: 5px;
    margin-right: 0;
  }
}

/* Ensure no image filters are applied */
.page-blog-789cub-promotions-analysis img {
  filter: none; /* Remove any potential filters */
}