/* style/blog-pub88-latest-promotions-and-bonuses.css */

/* Base styles for the page content, adapting to shared body background */
.page-blog-pub88-latest-promotions-and-bonuses {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default for light backgrounds */
  background-color: var(--background-color, #ffffff); /* Fallback to white if var not set */
}

/* Dark background sections should have light text */
.page-blog-pub88-latest-promotions-and-bonuses__dark-bg {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
}

/* Light background sections should have dark text */
.page-blog-pub88-latest-promotions-and-bonuses__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-pub88-latest-promotions-and-bonuses__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-pub88-latest-promotions-and-bonuses__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: 400px; /* Ensure image is visible */
}

.page-blog-pub88-latest-promotions-and-bonuses__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  color: #ffffff;
}

.page-blog-pub88-latest-promotions-and-bonuses__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-blog-pub88-latest-promotions-and-bonuses__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-blog-pub88-latest-promotions-and-bonuses__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-pub88-latest-promotions-and-bonuses__btn-primary,
.page-blog-pub88-latest-promotions-and-bonuses__btn-secondary {
  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;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-pub88-latest-promotions-and-bonuses__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-pub88-latest-promotions-and-bonuses__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-blog-pub88-latest-promotions-and-bonuses__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-pub88-latest-promotions-and-bonuses__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-blog-pub88-latest-promotions-and-bonuses__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-pub88-latest-promotions-and-bonuses__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-blog-pub88-latest-promotions-and-bonuses__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #333333;
}

.page-blog-pub88-latest-promotions-and-bonuses__text-block a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-blog-pub88-latest-promotions-and-bonuses__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  object-fit: cover;
}

.page-blog-pub88-latest-promotions-and-bonuses__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #333333;
}

.page-blog-pub88-latest-promotions-and-bonuses__ordered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #333333;
}

.page-blog-pub88-latest-promotions-and-bonuses__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-pub88-latest-promotions-and-bonuses__faq-list {
  margin-top: 40px;
}

.page-blog-pub88-latest-promotions-and-bonuses__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-pub88-latest-promotions-and-bonuses__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  position: relative;
}

.page-blog-pub88-latest-promotions-and-bonuses__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-pub88-latest-promotions-and-bonuses__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-blog-pub88-latest-promotions-and-bonuses__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #ffffff;
}

.page-blog-pub88-latest-promotions-and-bonuses__faq-item[open] .page-blog-pub88-latest-promotions-and-bonuses__faq-toggle {
  content: '−';
}

.page-blog-pub88-latest-promotions-and-bonuses__faq-answer {
  padding: 20px 25px;
  background-color: #ffffff;
  color: #333333;
  border-top: 1px solid #e0e0e0;
}

.page-blog-pub88-latest-promotions-and-bonuses__faq-answer p {
  margin-bottom: 0;
}

.page-blog-pub88-latest-promotions-and-bonuses__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
}

.page-blog-pub88-latest-promotions-and-bonuses__cta-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-blog-pub88-latest-promotions-and-bonuses__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-pub88-latest-promotions-and-bonuses__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-blog-pub88-latest-promotions-and-bonuses__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-pub88-latest-promotions-and-bonuses {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__hero-content {
    padding: 20px;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__btn-primary,
  .page-blog-pub88-latest-promotions-and-bonuses__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__content-area {
    padding: 20px 15px;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__text-block,
  .page-blog-pub88-latest-promotions-and-bonuses__list-item {
    font-size: 1em;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px 0;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__cta-section {
    padding: 40px 15px;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__cta-title {
    font-size: 1.8em;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__cta-description {
    font-size: 1em;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-pub88-latest-promotions-and-bonuses__faq-answer {
    padding: 15px 20px;
  }

  /* Ensure all content containers are responsive */
  .page-blog-pub88-latest-promotions-and-bonuses__section,
  .page-blog-pub88-latest-promotions-and-bonuses__card,
  .page-blog-pub88-latest-promotions-and-bonuses__container,
  .page-blog-pub88-latest-promotions-and-bonuses__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-pub88-latest-promotions-and-bonuses__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

@media (max-width: 480px) {
  .page-blog-pub88-latest-promotions-and-bonuses__main-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }
  .page-blog-pub88-latest-promotions-and-bonuses__section-title {
    font-size: 1.5em;
  }
  .page-blog-pub88-latest-promotions-and-bonuses__cta-title {
    font-size: 1.5em;
  }
  .page-blog-pub88-latest-promotions-and-bonuses__faq-item summary {
    font-size: 0.9em;
  }
}