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

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

.page-blog-sao79-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--sao79-text-main); /* Default text color for the page */
  background-color: var(--sao79-background); /* Page background from custom colors */
}

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

.page-blog-sao79-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-sao79-promotions-analysis__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-blog-sao79-promotions-analysis__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--sao79-gold-color);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-blog-sao79-promotions-analysis__hero-description {
  font-size: clamp(1em, 1.5vw, 1.3em);
  color: var(--sao79-text-main);
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-blog-sao79-promotions-analysis__btn-primary,
.page-blog-sao79-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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-sao79-promotions-analysis__btn-primary {
  background: var(--sao79-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-sao79-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

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

.page-blog-sao79-promotions-analysis__btn-secondary:hover {
  background-color: var(--sao79-primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-blog-sao79-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--sao79-card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-top: -40px; /* Overlap with hero for smooth transition */
  position: relative;
  z-index: 5;
  color: var(--sao79-text-main);
}

.page-blog-sao79-promotions-analysis__section-title {
  font-size: 2.2em;
  color: var(--sao79-gold-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid var(--sao79-divider-color);
  padding-bottom: 15px;
  font-weight: 700;
}

.page-blog-sao79-promotions-analysis__sub-title {
  font-size: 1.8em;
  color: var(--sao79-primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-sao79-promotions-analysis__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--sao79-text-main);
}

.page-blog-sao79-promotions-analysis__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-blog-sao79-promotions-analysis__list-item {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 10px;
}

.page-blog-sao79-promotions-analysis__list-item strong {
  color: var(--sao79-primary-color);
}

.page-blog-sao79-promotions-analysis__inline-link {
  color: var(--sao79-secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-sao79-promotions-analysis__inline-link:hover {
  color: var(--sao79-gold-color);
}

/* FAQ Section */
.page-blog-sao79-promotions-analysis__faq-section {
  margin-top: 40px;
  border-top: 1px solid var(--sao79-divider-color);
  padding-top: 20px;
}

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

.page-blog-sao79-promotions-analysis__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--sao79-text-main);
  background-color: var(--sao79-deep-green);
  list-style: none;
  outline: none;
  transition: background-color 0.3s ease;
}

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

.page-blog-sao79-promotions-analysis__faq-item summary:hover {
  background-color: var(--sao79-primary-color);
  color: #ffffff;
}

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

.page-blog-sao79-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--sao79-secondary-color);
}

.page-blog-sao79-promotions-analysis__faq-item summary:hover .page-blog-sao79-promotions-analysis__faq-toggle {
  color: #ffffff;
}

.page-blog-sao79-promotions-analysis__faq-item[open] .page-blog-sao79-promotions-analysis__faq-toggle {
  content: '−';
}

.page-blog-sao79-promotions-analysis__faq-answer {
  padding: 15px 25px 20px 25px;
  background-color: var(--sao79-card-bg);
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--sao79-text-secondary);
}

.page-blog-sao79-promotions-analysis__faq-answer p {
  margin-bottom: 0;
  color: var(--sao79-text-secondary);
}

.page-blog-sao79-promotions-analysis__cta-buttons--bottom {
  margin-top: 50px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-sao79-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-sao79-promotions-analysis__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-sao79-promotions-analysis__hero-content {
    padding: 15px;
    position: static; /* Adjust for mobile, no absolute overlay */
    transform: none;
    margin-top: 20px;
    background-color: var(--sao79-card-bg);
    border-radius: 8px;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px); /* Ensure padding is accounted for */
  }

  .page-blog-sao79-promotions-analysis__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-blog-sao79-promotions-analysis__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-sao79-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

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

  .page-blog-sao79-promotions-analysis__content-area {
    padding: 30px 15px;
    margin-top: 0; /* Remove negative margin on mobile */
    box-shadow: none;
  }

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

  .page-blog-sao79-promotions-analysis__sub-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-sao79-promotions-analysis__paragraph,
  .page-blog-sao79-promotions-analysis__list-item,
  .page-blog-sao79-promotions-analysis__faq-answer p {
    font-size: 1em;
    line-height: 1.7;
  }

  /* Mobile image responsiveness */
  .page-blog-sao79-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset;
    min-height: unset;
  }

  /* Ensure containers with images/buttons don't overflow */
  .page-blog-sao79-promotions-analysis__section,
  .page-blog-sao79-promotions-analysis__card,
  .page-blog-sao79-promotions-analysis__container,
  .page-blog-sao79-promotions-analysis__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-sao79-promotions-analysis__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

/* Desktop specific adjustments if needed */
@media (min-width: 769px) {
  .page-blog-sao79-promotions-analysis__hero-content {
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  }
}

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

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