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

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0;
}

.page-blog-kk98-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light); /* Assuming body background is light from shared.css */
}

.page-blog-kk98-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-blog-kk98-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-kk98-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no filter is applied */
}

.page-blog-kk98-latest-promotions-analysis__hero-content {
  max-width: 900px;
  margin-top: 40px;
  z-index: 1; /* Ensure content is above image if any overlap */
  color: var(--text-light);
}

.page-blog-kk98-latest-promotions-analysis__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-blog-kk98-latest-promotions-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-blog-kk98-latest-promotions-analysis__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-blog-kk98-latest-promotions-analysis__btn-primary,
.page-blog-kk98-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

.page-blog-kk98-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-kk98-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-blog-kk98-latest-promotions-analysis__section-wrapper {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-kk98-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-dark);
}

.page-blog-kk98-latest-promotions-analysis__dark-section .page-blog-kk98-latest-promotions-analysis__section-title {
  color: var(--text-light);
}

.page-blog-kk98-latest-promotions-analysis__text-contrast-fix {
  color: var(--text-light) !important;
}

.page-blog-kk98-latest-promotions-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-kk98-latest-promotions-analysis__card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
}

.page-blog-kk98-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no filter is applied */
}

.page-blog-kk98-latest-promotions-analysis__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-kk98-latest-promotions-analysis__promotions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-kk98-latest-promotions-analysis__promotion-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
}

.page-blog-kk98-latest-promotions-analysis__promotion-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-kk98-latest-promotions-analysis__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-blog-kk98-latest-promotions-analysis__step-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
}

.page-blog-kk98-latest-promotions-analysis__step-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no filter is applied */
}

.page-blog-kk98-latest-promotions-analysis__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-kk98-latest-promotions-analysis__terms-list,
.page-blog-kk98-latest-promotions-analysis__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-kk98-latest-promotions-analysis__terms-item,
.page-blog-kk98-latest-promotions-analysis__tips-item {
  background-color: var(--secondary-color);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
}

.page-blog-kk98-latest-promotions-analysis__terms-subtitle,
.page-blog-kk98-latest-promotions-analysis__tips-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

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

.page-blog-kk98-latest-promotions-analysis__faq-item {
  background-color: var(--secondary-color);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
}

.page-blog-kk98-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #f9f9f9;
  color: var(--primary-color);
  list-style: none; /* For details/summary */
}

.page-blog-kk98-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-kk98-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  pointer-events: none; /* Allow click on summary */
}

.page-blog-kk98-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-dark);
}

.page-blog-kk98-latest-promotions-analysis__cta-section {
  background-color: var(--background-dark);
  padding: 80px 20px;
  text-align: center;
  color: var(--text-light);
}

.page-blog-kk98-latest-promotions-analysis__cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-light);
}

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

  .page-blog-kk98-latest-promotions-analysis__hero-content {
    margin-top: 20px;
  }

  .page-blog-kk98-latest-promotions-analysis__main-title {
    font-size: 2rem;
  }

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

  .page-blog-kk98-latest-promotions-analysis__content-area {
    padding: 30px 15px;
  }

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

  .page-blog-kk98-latest-promotions-analysis__card-grid,
  .page-blog-kk98-latest-promotions-analysis__promotions-list,
  .page-blog-kk98-latest-promotions-analysis__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-kk98-latest-promotions-analysis__btn-primary,
  .page-blog-kk98-latest-promotions-analysis__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-kk98-latest-promotions-analysis__btn-container {
    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-kk98-latest-promotions-analysis__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Images and video responsive */
  .page-blog-kk98-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

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

  .page-blog-kk98-latest-promotions-analysis__cta-section {
    padding: 50px 15px;
  }

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