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

/* Variables */
:root {
  --okwin-primary-color: #26A9E0;
  --okwin-secondary-color: #FFFFFF;
  --okwin-login-color: #EA7C07;
  --okwin-background-color: #0a0a0a; /* From body background */
  --okwin-text-light: #ffffff;
  --okwin-text-dark: #333333;
  --okwin-card-bg: rgba(255, 255, 255, 0.08);
}

/* Base styles for the page content, considering body background is dark #0a0a0a */
.page-blog-okwin-latest-promotions-analysis {
  color: var(--okwin-text-light); /* Light text on dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--okwin-background-color);
}

.page-blog-okwin-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 40px 0; /* body handles header offset, this is extra padding */
  text-align: center;
  overflow: hidden;
}

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

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

.page-blog-okwin-latest-promotions-analysis__hero-content {
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 2;
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-blog-okwin-latest-promotions-analysis__main-title {
  font-weight: bold;
  color: var(--okwin-primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
}

.page-blog-okwin-latest-promotions-analysis__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--okwin-text-light);
}

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

.page-blog-okwin-latest-promotions-analysis__article {
  background-color: var(--okwin-card-bg); /* Slightly transparent background for readability */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-okwin-latest-promotions-analysis__section-title {
  color: var(--okwin-primary-color);
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--okwin-primary-color);
  padding-bottom: 10px;
}

.page-blog-okwin-latest-promotions-analysis__paragraph {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--okwin-text-light);
}

.page-blog-okwin-latest-promotions-analysis__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px 0;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px;
}

.page-blog-okwin-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-okwin-latest-promotions-analysis__ordered-list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-blog-okwin-latest-promotions-analysis__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--okwin-primary-color);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  color: var(--okwin-text-light);
}

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

.page-blog-okwin-latest-promotions-analysis__list-text {
  font-size: 1rem;
  color: var(--okwin-text-light);
}

.page-blog-okwin-latest-promotions-analysis__btn-primary,
.page-blog-okwin-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text break */
}

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

.page-blog-okwin-latest-promotions-analysis__btn-primary:hover {
  background-color: #1e87b5;
  border-color: #1e87b5;
}

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

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

.page-blog-okwin-latest-promotions-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 15px; /* Add padding for mobile */
}

/* FAQ Section */
.page-blog-okwin-latest-promotions-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-okwin-latest-promotions-analysis__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.page-blog-okwin-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--okwin-primary-color);
  background-color: rgba(255, 255, 255, 0.08);
  user-select: none;
  list-style: none; /* For details/summary */
}

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

.page-blog-okwin-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  color: var(--okwin-text-light);
}

.page-blog-okwin-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--okwin-primary-color);
}

.page-blog-okwin-latest-promotions-analysis__faq-answer {
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--okwin-text-light);
  font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-okwin-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-okwin-latest-promotions-analysis__hero-section {
    padding: 10px 0 30px 0;
  }

  .page-blog-okwin-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    padding: 0 15px;
  }

  .page-blog-okwin-latest-promotions-analysis__description {
    font-size: 1rem;
    padding: 0 15px;
  }

  .page-blog-okwin-latest-promotions-analysis__content-area,
  .page-blog-okwin-latest-promotions-analysis__article {
    padding: 20px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-okwin-latest-promotions-analysis__section-title {
    font-size: 1.7rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-okwin-latest-promotions-analysis__paragraph,
  .page-blog-okwin-latest-promotions-analysis__list-text {
    font-size: 0.95rem;
  }

  .page-blog-okwin-latest-promotions-analysis__list-title {
    font-size: 1.15rem;
  }

  /* Image responsiveness */
  .page-blog-okwin-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Button responsiveness */
  .page-blog-okwin-latest-promotions-analysis__btn-primary,
  .page-blog-okwin-latest-promotions-analysis__btn-secondary,
  .page-blog-okwin-latest-promotions-analysis a[class*="button"],
  .page-blog-okwin-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;
    margin: 10px 0 !important; /* Stack buttons vertically */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-okwin-latest-promotions-analysis__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px !important;
  }

  .page-blog-okwin-latest-promotions-analysis__faq-question {
    padding: 12px 15px;
  }

  .page-blog-okwin-latest-promotions-analysis__faq-answer {
    padding: 12px 15px;
  }
}