/* style/blog-ok8386-promotions-analysis.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --background-color: #111; /* Body background from shared.css */
  --text-color-dark-bg: #FFFFFF;
  --text-color-light-bg: #333333;
  --card-bg-dark-theme: rgba(255, 255, 255, 0.1);
  --border-color-dark-theme: rgba(255, 255, 255, 0.2);
}

.page-blog-ok8386-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  line-height: 1.6;
}

.page-blog-ok8386-promotions-analysis__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-blog-ok8386-promotions-analysis__light-bg {
  background-color: var(--card-bg-dark-theme);
  color: var(--text-color-dark-bg);
}

.page-blog-ok8386-promotions-analysis__text-contrast-fix {
  color: var(--text-color-dark-bg) !important; /* Ensure white text on dark backgrounds */
}

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

.page-blog-ok8386-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-ok8386-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ok8386-promotions-analysis__hero-content {
  max-width: 900px;
  z-index: 1;
  color: var(--text-color-dark-bg);
}

.page-blog-ok8386-promotions-analysis__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
  /* No fixed font-size for H1 as per rules, rely on responsive scaling */
}

.page-blog-ok8386-promotions-analysis__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-blog-ok8386-promotions-analysis__btn-primary,
.page-blog-ok8386-promotions-analysis__btn-secondary {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-ok8386-promotions-analysis__btn-primary {
  background-color: var(--login-color); /* Use login color for primary CTA */
  color: var(--secondary-color);
  border: 2px solid var(--login-color);
}

.page-blog-ok8386-promotions-analysis__btn-primary:hover {
  background-color: darken(var(--login-color), 10%);
  border-color: darken(var(--login-color), 10%);
}

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

.page-blog-ok8386-promotions-analysis__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-blog-ok8386-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: transparent;
  color: var(--text-color-dark-bg);
}

.page-blog-ok8386-promotions-analysis__section-title {
  font-size: 2.2em;
  margin-bottom: 30px;
  color: var(--text-color-dark-bg);
  text-align: center;
}

.page-blog-ok8386-promotions-analysis__paragraph {
  margin-bottom: 1em;
  text-align: justify;
  color: var(--text-color-dark-bg);
}

.page-blog-ok8386-promotions-analysis__image-in-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ok8386-promotions-analysis__promotion-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-ok8386-promotions-analysis__card {
  background-color: var(--card-bg-dark-theme);
  border: 1px solid var(--border-color-dark-theme);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text-color-dark-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-blog-ok8386-promotions-analysis__card:hover {
  transform: translateY(-5px);
}

.page-blog-ok8386-promotions-analysis__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--text-color-dark-bg);
}

.page-blog-ok8386-promotions-analysis__card-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--text-color-dark-bg);
}

.page-blog-ok8386-promotions-analysis__step-by-step-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-ok8386-promotions-analysis__step-item {
  background-color: var(--card-bg-dark-theme);
  border: 1px solid var(--border-color-dark-theme);
  border-radius: 10px;
  padding: 25px;
  color: var(--text-color-dark-bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-ok8386-promotions-analysis__step-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-ok8386-promotions-analysis__step-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
}

.page-blog-ok8386-promotions-analysis__checklist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-ok8386-promotions-analysis__checklist-item {
  background-color: var(--card-bg-dark-theme);
  border: 1px solid var(--border-color-dark-theme);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1em;
  color: var(--text-color-dark-bg);
}

.page-blog-ok8386-promotions-analysis__checklist-item::before {
  content: '✅';
  margin-right: 10px;
  font-size: 1.2em;
}

.page-blog-ok8386-promotions-analysis__faq-list {
  margin-top: 30px;
}

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

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

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

.page-blog-ok8386-promotions-analysis__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-blog-ok8386-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-blog-ok8386-promotions-analysis__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 1em;
  line-height: 1.5;
  color: var(--text-color-dark-bg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-ok8386-promotions-analysis__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }
  .page-blog-ok8386-promotions-analysis__main-title {
    font-size: 2.5em;
  }
  .page-blog-ok8386-promotions-analysis__section-title {
    font-size: 2em;
  }
  .page-blog-ok8386-promotions-analysis__content-area {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-ok8386-promotions-analysis__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }
  .page-blog-ok8386-promotions-analysis__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em); /* Use clamp for H1 */
  }
  .page-blog-ok8386-promotions-analysis__hero-description {
    font-size: 1em;
  }
  .page-blog-ok8386-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-blog-ok8386-promotions-analysis__btn-primary,
  .page-blog-ok8386-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-blog-ok8386-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-blog-ok8386-promotions-analysis__content-area,
  .page-blog-ok8386-promotions-analysis__promotion-card-grid,
  .page-blog-ok8386-promotions-analysis__step-by-step-guide,
  .page-blog-ok8386-promotions-analysis__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-blog-ok8386-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-ok8386-promotions-analysis p,
  .page-blog-ok8386-promotions-analysis li,
  .page-blog-ok8386-promotions-analysis__card-description,
  .page-blog-ok8386-promotions-analysis__step-description,
  .page-blog-ok8386-promotions-analysis__faq-answer {
    font-size: 15px;
  }
  .page-blog-ok8386-promotions-analysis__card-title,
  .page-blog-ok8386-promotions-analysis__step-title {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-blog-ok8386-promotions-analysis__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-blog-ok8386-promotions-analysis__section-title {
    font-size: 1.6em;
  }
  .page-blog-ok8386-promotions-analysis__hero-image {
    margin-bottom: 20px;
  }
}