/* style/blog-qc6672-win-latest-promotions.css */

/* Base styles for the page content, considering body background is #000000 (dark) */
.page-blog-qc6672-win-latest-promotions {
  color: #ffffff; /* Must use light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on body background from shared.css */
}

/* Hero Section */
.page-blog-qc6672-win-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-blog-qc6672-win-latest-promotions__hero-content {
  max-width: 900px;
  margin-top: 40px;
  z-index: 1; /* Ensure content is above any background elements */
  color: #ffffff;
}

.page-blog-qc6672-win-latest-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 100%;
  font-size: clamp(2em, 4vw, 3em); /* Responsive H1 font size */
}

.page-blog-qc6672-win-latest-promotions__intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* CTA Buttons */
.page-blog-qc6672-win-latest-promotions__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-qc6672-win-latest-promotions__cta-buttons--bottom {
    margin-top: 40px;
}

.page-blog-qc6672-win-latest-promotions__btn-primary,
.page-blog-qc6672-win-latest-promotions__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, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
  min-width: 180px;
  min-height: 48px;
  line-height: 1.2;
  font-size: 1em;
}

.page-blog-qc6672-win-latest-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-qc6672-win-latest-promotions__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-blog-qc6672-win-latest-promotions__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-qc6672-win-latest-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Content Section */
.page-blog-qc6672-win-latest-promotions__content-section {
  padding: 40px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for content contrast */
  color: #ffffff;
}

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

.page-blog-qc6672-win-latest-promotions__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-blog-qc6672-win-latest-promotions__sub-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog-qc6672-win-latest-promotions__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-qc6672-win-latest-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* FAQ Section */
.page-blog-qc6672-win-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-qc6672-win-latest-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for contrast */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-qc6672-win-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1); /* Darker background for question */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page-blog-qc6672-win-latest-promotions__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details tag */
}

.page-blog-qc6672-win-latest-promotions__faq-question::marker {
  display: none; /* Hide default marker for details tag */
}

.page-blog-qc6672-win-latest-promotions__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-blog-qc6672-win-latest-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-qc6672-win-latest-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Details tag specific styles */
.page-blog-qc6672-win-latest-promotions__faq-item[open] .page-blog-qc6672-win-latest-promotions__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.page-blog-qc6672-win-latest-promotions__faq-item[open] .page-blog-qc6672-win-latest-promotions__faq-toggle {
  content: '−';
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-qc6672-win-latest-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-blog-qc6672-win-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-blog-qc6672-win-latest-promotions__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-qc6672-win-latest-promotions__hero-section {
    padding: 10px 15px 40px;
  }
  .page-blog-qc6672-win-latest-promotions__hero-content {
    margin-top: 20px;
  }
  .page-blog-qc6672-win-latest-promotions__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 15px;
  }
  .page-blog-qc6672-win-latest-promotions__intro-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-blog-qc6672-win-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px;
  }
  .page-blog-qc6672-win-latest-promotions__btn-primary,
  .page-blog-qc6672-win-latest-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px;
    font-size: 0.95em;
    min-width: unset;
  }

  .page-blog-qc6672-win-latest-promotions__content-section {
    padding: 30px 0;
  }
  .page-blog-qc6672-win-latest-promotions__container {
    padding: 0 15px;
  }
  .page-blog-qc6672-win-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-blog-qc6672-win-latest-promotions__sub-title {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-blog-qc6672-win-latest-promotions__text-block {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  .page-blog-qc6672-win-latest-promotions__content-image {
    margin: 20px auto;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-qc6672-win-latest-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-qc6672-win-latest-promotions__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-qc6672-win-latest-promotions__hero-section {
    padding-bottom: 30px;
  }
  .page-blog-qc6672-win-latest-promotions__main-title {
    font-size: clamp(1.2em, 7vw, 1.8em);
  }
  .page-blog-qc6672-win-latest-promotions__section-title {
    font-size: 1.6em;
  }
  .page-blog-qc6672-win-latest-promotions__sub-title {
    font-size: 1.1em;
  }
}