/* style/blog-sumvip-promotions-faq-how-to-use-effectively.css */

/* Body background color is handled by shared.css var(--background-color), assumed dark */
.page-blog-sumvip-promotions-faq-how-to-use-effectively {
  color: var(--text-main); /* Default text color for the page content */
  background-color: var(--background); /* Overall page background */
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--card-bg);
  overflow: hidden;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  text-align: center;
  color: var(--text-main);
  z-index: 1; /* Ensure content is above any background effects */
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 20px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  margin: 0 10px;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__btn-secondary {
  background: transparent;
  color: var(--primary-color); /* Use primary color for text */
  border: 2px solid var(--primary-color);
  margin: 0 10px;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--text-main);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--glow);
  border-radius: 2px;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__link:hover {
  color: var(--glow);
  text-decoration: underline;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-list {
  margin-top: 40px;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--deep-green);
  color: var(--text-main);
  border-bottom: 1px solid var(--divider);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-item[open] > .page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-question {
  background-color: var(--primary-color);
  color: #ffffff;
  border-bottom: 1px solid transparent;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-qtext {
  flex-grow: 1;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-item[open] .page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-item[open] .page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

/* Ensure details summary marker is hidden */
.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-item summary {
  list-style: none;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__image-content {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
  display: block;
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-sumvip-promotions-faq-how-to-use-effectively__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__section-title {
    font-size: 2rem;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__paragraph,
  .page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-content {
    padding: 0 15px;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 100% !important; /* Force full width on mobile */
    margin: 10px 0 !important; /* Stack buttons vertically */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__content-area {
    padding: 40px 15px;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  /* Mobile image responsiveness */
  .page-blog-sumvip-promotions-faq-how-to-use-effectively img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-image-wrapper,
  .page-blog-sumvip-promotions-faq-how-to-use-effectively__container,
  .page-blog-sumvip-promotions-faq-how-to-use-effectively__content-area,
  .page-blog-sumvip-promotions-faq-how-to-use-effectively__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-sumvip-promotions-faq-how-to-use-effectively__hero-section {
    padding-top: 10px !important;
  }

  /* Ensure content area images are not too small */
  .page-blog-sumvip-promotions-faq-how-to-use-effectively__image-content {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}

/* Color Contrast Fixes (if needed, based on body background) */
/* Assuming body is dark background, text is light */
.page-blog-sumvip-promotions-faq-how-to-use-effectively__dark-bg {
  color: var(--text-main);
  background-color: var(--card-bg);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__light-bg {
  color: var(--text-secondary);
  background-color: var(--background);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__text-block {
  color: var(--text-secondary);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively__card {
  background-color: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border);
}

/* Specific overrides for text for readability */
.page-blog-sumvip-promotions-faq-how-to-use-effectively p,
.page-blog-sumvip-promotions-faq-how-to-use-effectively li {
  color: var(--text-secondary);
}

.page-blog-sumvip-promotions-faq-how-to-use-effectively h2,
.page-blog-sumvip-promotions-faq-how-to-use-effectively h3,
.page-blog-sumvip-promotions-faq-how-to-use-effectively h4,
.page-blog-sumvip-promotions-faq-how-to-use-effectively__faq-qtext {
  color: var(--text-main);
}