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

/* --- General Styles --- */
.page-blog-cwin55-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for the page */
  background-color: var(--bg-color, #08160F); /* Default background color for the page */
}

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

/* --- Section Styling --- */
.page-blog-cwin55-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image first, then content */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space below hero content */
  background-color: var(--bg-color, #08160F);
  padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-blog-cwin55-latest-promotions-analysis__hero-content {
  text-align: center;
  padding: 20px;
  color: var(--text-main, #F2FFF6);
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image slightly */
  position: relative;
  z-index: 2; /* Ensure content is above image */
}

.page-blog-cwin55-latest-promotions-analysis__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--gold, #F2C14E); /* Using gold for main title */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-cwin55-latest-promotions-analysis__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main, #F2FFF6);
}

.page-blog-cwin55-latest-promotions-analysis__content-section {
  padding: 60px 0;
  background-color: var(--bg-color, #08160F); /* Default background, can be overridden */
  color: var(--text-main, #F2FFF6);
}

.page-blog-cwin55-latest-promotions-analysis__light-bg {
  background-color: var(--card-bg, #11271B); /* Using card bg for lighter contrast section */
  color: var(--text-main, #F2FFF6);
}

.page-blog-cwin55-latest-promotions-analysis__dark-bg {
  background-color: var(--deep-green, #0A4B2C); /* Deeper green for FAQ section */
  color: var(--text-main, #F2FFF6);
}

.page-blog-cwin55-latest-promotions-analysis__text-block {
  margin-bottom: 40px;
}

.page-blog-cwin55-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold, #F2C14E);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-cwin55-latest-promotions-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color, #11A84E);
  border-radius: 2px;
}

.page-blog-cwin55-latest-promotions-analysis__sub-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--primary-color, #11A84E);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-cwin55-latest-promotions-analysis p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-cwin55-latest-promotions-analysis a {
  color: var(--primary-color, #11A84E);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-cwin55-latest-promotions-analysis a:hover {
  color: var(--gold, #F2C14E);
  text-decoration: underline;
}

.page-blog-cwin55-latest-promotions-analysis__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-cwin55-latest-promotions-analysis__list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* --- Image Styling --- */
.page-blog-cwin55-latest-promotions-analysis__image-full-width,
.page-blog-cwin55-latest-promotions-analysis__image-medium,
.page-blog-cwin55-latest-promotions-analysis__image-faq {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-blog-cwin55-latest-promotions-analysis__image-medium {
  max-width: 800px;
}

.page-blog-cwin55-latest-promotions-analysis__image-faq {
  max-width: 600px;
}

/* --- Call to Action Buttons --- */
.page-blog-cwin55-latest-promotions-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.page-blog-cwin55-latest-promotions-analysis__cta-buttons--centered {
  justify-content: center;
}

.page-blog-cwin55-latest-promotions-analysis__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button color */
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 150px;
  box-sizing: border-box;
}

.page-blog-cwin55-latest-promotions-analysis__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Hover effect */
}

.page-blog-cwin55-latest-promotions-analysis__cta-button--hero {
  font-size: 1.2rem;
  padding: 15px 30px;
}

.page-blog-cwin55-latest-promotions-analysis__cta-button--large {
  font-size: 1.3rem;
  padding: 18px 35px;
  min-width: 200px;
}

.page-blog-cwin55-latest-promotions-analysis__cta-button--secondary {
  background: none;
  border: 2px solid var(--primary-color, #11A84E);
  color: var(--primary-color, #11A84E);
}

.page-blog-cwin55-latest-promotions-analysis__cta-button--secondary:hover {
  background: var(--primary-color, #11A84E);
  color: #ffffff;
}


/* --- FAQ Section --- */
.page-blog-cwin55-latest-promotions-analysis__faq-section {
  padding: 60px 0;
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
  text-align: center;
}

.page-blog-cwin55-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-blog-cwin55-latest-promotions-analysis__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-cwin55-latest-promotions-analysis__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main, #F2FFF6);
  list-style: none; /* Remove default marker */
}

.page-blog-cwin55-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none; /* Hide Chrome/Safari marker */
}

.page-blog-cwin55-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-cwin55-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  color: var(--text-main, #F2FFF6);
}

.page-blog-cwin55-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--primary-color, #11A84E);
  transition: transform 0.3s ease;
}

.page-blog-cwin55-latest-promotions-analysis__faq-item[open] .page-blog-cwin55-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
}

.page-blog-cwin55-latest-promotions-analysis__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-cwin55-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0;
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-blog-cwin55-latest-promotions-analysis__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-blog-cwin55-latest-promotions-analysis__hero-section {
    padding-bottom: 20px;
  }

  .page-blog-cwin55-latest-promotions-analysis__hero-image {
    max-height: 300px;
  }

  .page-blog-cwin55-latest-promotions-analysis__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-blog-cwin55-latest-promotions-analysis__main-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .page-blog-cwin55-latest-promotions-analysis__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-cwin55-latest-promotions-analysis__cta-button--hero {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .page-blog-cwin55-latest-promotions-analysis__content-section,
  .page-blog-cwin55-latest-promotions-analysis__faq-section {
    padding: 40px 0;
  }

  .page-blog-cwin55-latest-promotions-analysis__container {
    padding: 0 15px;
  }

  .page-blog-cwin55-latest-promotions-analysis__section-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .page-blog-cwin55-latest-promotions-analysis__sub-title {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-cwin55-latest-promotions-analysis p,
  .page-blog-cwin55-latest-promotions-analysis__list li {
    font-size: 0.95rem;
  }

  /* Mobile image responsiveness */
  .page-blog-cwin55-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile video responsiveness - if any, though not present now */
  .page-blog-cwin55-latest-promotions-analysis video,
  .page-blog-cwin55-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile container/section responsiveness */
  .page-blog-cwin55-latest-promotions-analysis__section,
  .page-blog-cwin55-latest-promotions-analysis__card,
  .page-blog-cwin55-latest-promotions-analysis__container,
  .page-blog-cwin55-latest-promotions-analysis__cta-buttons,
  .page-blog-cwin55-latest-promotions-analysis__button-group,
  .page-blog-cwin55-latest-promotions-analysis__btn-container,
  .page-blog-cwin55-latest-promotions-analysis__video-section,
  .page-blog-cwin55-latest-promotions-analysis__video-container,
  .page-blog-cwin55-latest-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  
  /* Mobile button responsiveness */
  .page-blog-cwin55-latest-promotions-analysis__cta-button,
  .page-blog-cwin55-latest-promotions-analysis__btn-primary,
  .page-blog-cwin55-latest-promotions-analysis__btn-secondary,
  .page-blog-cwin55-latest-promotions-analysis a[class*="button"],
  .page-blog-cwin55-latest-promotions-analysis a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-cwin55-latest-promotions-analysis__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px;
  }

  .page-blog-cwin55-latest-promotions-analysis__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-cwin55-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  .page-blog-cwin55-latest-promotions-analysis__video-section {
    padding-top: 10px !important;
  }
}

/* --- Color Contrast Fixes (if needed) --- */
/* Ensure text on hero image is readable */
.page-blog-cwin55-latest-promotions-analysis__hero-content {
  color: #F2FFF6; /* Text Main */
}

/* Ensure text on dark-bg sections is readable */
.page-blog-cwin55-latest-promotions-analysis__dark-bg p,
.page-blog-cwin55-latest-promotions-analysis__dark-bg li,
.page-blog-cwin55-latest-promotions-analysis__dark-bg .page-blog-cwin55-latest-promotions-analysis__faq-answer p {
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-cwin55-latest-promotions-analysis__dark-bg .page-blog-cwin55-latest-promotions-analysis__section-title,
.page-blog-cwin55-latest-promotions-analysis__dark-bg .page-blog-cwin55-latest-promotions-analysis__faq-qtext {
  color: var(--gold, #F2C14E);
}

.page-blog-cwin55-latest-promotions-analysis__dark-bg .page-blog-cwin55-latest-promotions-analysis__faq-item summary {
  color: var(--text-main, #F2FFF6);
}

.page-blog-cwin55-latest-promotions-analysis__dark-bg .page-blog-cwin55-latest-promotions-analysis__faq-toggle {
  color: var(--primary-color, #11A84E);
}

/* Default link colors on dark backgrounds */
.page-blog-cwin55-latest-promotions-analysis a {
  color: var(--primary-color, #11A84E);
}
.page-blog-cwin55-latest-promotions-analysis a:hover {
  color: var(--gold, #F2C14E);
}