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

:root {
  --page-primary-color: #26A9E0;
  --page-secondary-color: #FFFFFF;
  --page-text-color-dark-bg: #FFFFFF;
  --page-text-color-light-bg: #333333;
  --page-cta-login-color: #EA7C07;
  --page-background-color: #0a0a0a; /* Body background from shared.css */
}

.page-blog-latest-promotions-analysis {
  color: var(--page-text-color-dark-bg);
  background-color: var(--page-background-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for visual separation, body handles header offset */
}

.page-blog-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

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

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

.page-blog-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly with image for design */
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background for text readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.page-blog-latest-promotions-analysis__description {
  font-size: 18px;
  color: var(--page-secondary-color);
  margin-bottom: 30px;
}

.page-blog-latest-promotions-analysis__section {
  padding: 60px 0;
  background-color: var(--page-background-color);
}

.page-blog-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-latest-promotions-analysis__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--page-primary-color);
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-blog-latest-promotions-analysis__text-block {
  font-size: 17px;
  color: var(--page-text-color-dark-bg);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-latest-promotions-analysis__btn-primary,
.page-blog-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

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

.page-blog-latest-promotions-analysis__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--page-text-color-dark-bg);
}

.page-blog-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-latest-promotions-analysis__card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--page-primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-blog-latest-promotions-analysis__mt-40 {
  margin-top: 40px;
}

.page-blog-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-latest-promotions-analysis__list li {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--page-primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-blog-latest-promotions-analysis__list-title {
  font-size: 20px;
  color: var(--page-primary-color);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-analysis__list li p {
  font-size: 16px;
  color: var(--page-text-color-dark-bg);
}

.page-blog-latest-promotions-analysis__numbered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 30px;
}

.page-blog-latest-promotions-analysis__numbered-list li {
  margin-bottom: 25px;
  font-size: 17px;
  color: var(--page-text-color-dark-bg);
}

.page-blog-latest-promotions-analysis__numbered-list .page-blog-latest-promotions-analysis__list-title {
  color: var(--page-primary-color);
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-latest-promotions-analysis__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-blog-latest-promotions-analysis__advantage-list li {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-promotions-analysis__advantage-list .page-blog-latest-promotions-analysis__list-title {
  font-size: 20px;
  color: var(--page-primary-color);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-analysis__advantage-list li p {
  font-size: 16px;
  color: var(--page-text-color-dark-bg);
}

.page-blog-latest-promotions-analysis__faq-section {
  padding: 60px 0;
  background-color: var(--page-background-color);
}

.page-blog-latest-promotions-analysis__faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.page-blog-latest-promotions-analysis__faq-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-latest-promotions-analysis__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-latest-promotions-analysis__faq-details {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--page-text-color-dark-bg);
}

.page-blog-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: var(--page-primary-color);
  list-style: none; /* Remove default marker for summary */
}

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

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

.page-blog-latest-promotions-analysis__faq-toggle {
  font-size: 24px;
  margin-left: 15px;
  color: var(--page-secondary-color);
}

.page-blog-latest-promotions-analysis__faq-answer {
  padding-top: 15px;
  font-size: 16px;
  color: var(--page-text-color-dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 15px;
}

.page-blog-latest-promotions-analysis__cta-section {
  text-align: center;
  padding: 60px 0;
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color);
}

.page-blog-latest-promotions-analysis__cta-section .page-blog-latest-promotions-analysis__section-title {
  color: var(--page-secondary-color);
}

.page-blog-latest-promotions-analysis__cta-section .page-blog-latest-promotions-analysis__description {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-analysis__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }

  .page-blog-latest-promotions-analysis__main-title {
    font-size: clamp(26px, 4.5vw, 40px);
  }

  .page-blog-latest-promotions-analysis__description {
    font-size: 16px;
  }

  .page-blog-latest-promotions-analysis__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-blog-latest-promotions-analysis__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-latest-promotions-analysis__faq-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important;
  }

  .page-blog-latest-promotions-analysis__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
    width: calc(100% - 30px); /* Adjust for padding */
  }

  .page-blog-latest-promotions-analysis__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-blog-latest-promotions-analysis__section-title {
    font-size: clamp(22px, 5vw, 34px);
    margin-bottom: 30px;
  }

  .page-blog-latest-promotions-analysis__sub-title {
    font-size: clamp(18px, 4vw, 24px);
  }

  .page-blog-latest-promotions-analysis__text-block {
    font-size: 16px;
  }

  .page-blog-latest-promotions-analysis__container,
  .page-blog-latest-promotions-analysis__hero-section,
  .page-blog-latest-promotions-analysis__section,
  .page-blog-latest-promotions-analysis__cta-section,
  .page-blog-latest-promotions-analysis__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }

  .page-blog-latest-promotions-analysis__card-image {
    height: auto; /* Allow height to adjust */
  }

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

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

  .page-blog-latest-promotions-analysis__card {
    padding: 20px;
  }

  .page-blog-latest-promotions-analysis__advantage-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-blog-latest-promotions-analysis__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-latest-promotions-analysis__faq-image {
    margin-bottom: 20px;
  }

  .page-blog-latest-promotions-analysis__faq-details {
    padding: 15px;
  }

  .page-blog-latest-promotions-analysis__faq-question {
    font-size: 17px;
  }

  .page-blog-latest-promotions-analysis__faq-answer {
    font-size: 15px;
  }

  .page-blog-latest-promotions-analysis__numbered-list {
    padding-left: 20px;
  }

  .page-blog-latest-promotions-analysis__numbered-list li,
  .page-blog-latest-promotions-analysis__list li p,
  .page-blog-latest-promotions-analysis__advantage-list li p {
    font-size: 15px;
  }
}

/* Contrast Fixes */
.page-blog-latest-promotions-analysis__dark-bg {
  color: var(--page-text-color-dark-bg);
  background-color: var(--page-background-color);
}

.page-blog-latest-promotions-analysis__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark body */
  color: var(--page-text-color-dark-bg);
}

.page-blog-latest-promotions-analysis__list li,
.page-blog-latest-promotions-analysis__advantage-list li {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-latest-promotions-analysis__faq-details {
  background-color: rgba(255, 255, 255, 0.08);
}