/* style/blog-98wim-latest-promotions-analysis.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-blog-98wim-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Body background is light, so use dark text */
  background-color: var(--background-light);
}

.page-blog-98wim-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, header offset handled by body */
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a7bd5 100%); /* Blue gradient background for visual appeal */
  color: var(--text-light);
}

.page-blog-98wim-latest-promotions-analysis__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width within container */
}

.page-blog-98wim-latest-promotions-analysis__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-98wim-latest-promotions-analysis__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-98wim-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-blog-98wim-latest-promotions-analysis__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-98wim-latest-promotions-analysis__intro-text {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 30px;
  color: var(--text-light);
  opacity: 0.9;
}

.page-blog-98wim-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Login color */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-blog-98wim-latest-promotions-analysis__cta-button:hover {
  background: #c76706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-blog-98wim-latest-promotions-analysis__section-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-98wim-latest-promotions-analysis__section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-98wim-latest-promotions-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-blog-98wim-latest-promotions-analysis__section-title--white {
  color: var(--text-light);
}

.page-blog-98wim-latest-promotions-analysis__text-block--white {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 30px;
}

.page-blog-98wim-latest-promotions-analysis__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-98wim-latest-promotions-analysis__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-98wim-latest-promotions-analysis__list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-blog-98wim-latest-promotions-analysis__list--white li {
  color: var(--text-light);
}

.page-blog-98wim-latest-promotions-analysis__dark-section {
  background: var(--primary-color);
  color: var(--text-light);
}

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

.page-blog-98wim-latest-promotions-analysis__card {
  background: var(--background-light);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
}

.page-blog-98wim-latest-promotions-analysis__card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-blog-98wim-latest-promotions-analysis__card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 15px 15px;
  min-height: 60px; /* Ensure consistent title height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-blog-98wim-latest-promotions-analysis__card p {
  font-size: 16px;
  color: var(--text-dark);
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-98wim-latest-promotions-analysis__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.page-blog-98wim-latest-promotions-analysis__btn-primary:hover {
  background: #1e87c0;
  transform: translateY(-1px);
}

.page-blog-98wim-latest-promotions-analysis a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-blog-98wim-latest-promotions-analysis a:hover {
  text-decoration: underline;
}

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

details.page-blog-98wim-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--background-light);
}

details.page-blog-98wim-latest-promotions-analysis__faq-item summary.page-blog-98wim-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-dark);
}

details.page-blog-98wim-latest-promotions-analysis__faq-item summary.page-blog-98wim-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-98wim-latest-promotions-analysis__faq-item summary.page-blog-98wim-latest-promotions-analysis__faq-question:hover {
  background: #f5f5f5;
}

.page-blog-98wim-latest-promotions-analysis__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
}

.page-blog-98wim-latest-promotions-analysis__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-98wim-latest-promotions-analysis__faq-item .page-blog-98wim-latest-promotions-analysis__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-dark);
}

.page-blog-98wim-latest-promotions-analysis__button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-blog-98wim-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--text-light);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-blog-98wim-latest-promotions-analysis__btn-secondary:hover {
  background: #e6f7ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

  .page-blog-98wim-latest-promotions-analysis__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-98wim-latest-promotions-analysis__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-98wim-latest-promotions-analysis__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-98wim-latest-promotions-analysis__main-title {
    font-size: 32px;
  }

  .page-blog-98wim-latest-promotions-analysis__intro-text {
    font-size: 18px;
  }

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

  .page-blog-98wim-latest-promotions-analysis__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-blog-98wim-latest-promotions-analysis__sub-title {
    font-size: 22px;
  }

  .page-blog-98wim-latest-promotions-analysis__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-98wim-latest-promotions-analysis__card {
    padding-bottom: 15px;
  }

  .page-blog-98wim-latest-promotions-analysis__card img {
    
  }

  .page-blog-98wim-latest-promotions-analysis__card-title {
    font-size: 18px;
    min-height: unset;
  }

  .page-blog-98wim-latest-promotions-analysis__card p {
    font-size: 15px;
  }

  .page-blog-98wim-latest-promotions-analysis__btn-primary {
    padding: 10px 20px;
    font-size: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  details.page-blog-98wim-latest-promotions-analysis__faq-item summary.page-blog-98wim-latest-promotions-analysis__faq-question {
    padding: 15px;
  }

  .page-blog-98wim-latest-promotions-analysis__faq-qtext {
    font-size: 15px;
  }

  .page-blog-98wim-latest-promotions-analysis__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-98wim-latest-promotions-analysis__button-container {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-98wim-latest-promotions-analysis__btn-secondary {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Ensure all images and containers are responsive */
  .page-blog-98wim-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-98wim-latest-promotions-analysis__section-wrapper,
  .page-blog-98wim-latest-promotions-analysis__promotions-grid,
  .page-blog-98wim-latest-promotions-analysis__card,
  .page-blog-98wim-latest-promotions-analysis__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}