/* style/blog-2024-latest-bonus-promotions-analysis.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --background-color: #FFFFFF;
  --register-login-font-color: #FFFF00;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --header-offset: 122px; /* Placeholder, actual value from shared.css */
}

.page-blog-2024-latest-bonus-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default to dark text for light body background */
  background-color: var(--background-color);
}

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

/* Hero Section */
.page-blog-2024-latest-bonus-promotions-analysis__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
}

.page-blog-2024-latest-bonus-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-2024-latest-latest-bonus-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-2024-latest-bonus-promotions-analysis__hero-content-wrapper {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 40px 0;
  text-align: center;
}

.page-blog-2024-latest-bonus-promotions-analysis__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
}

.page-blog-2024-latest-bonus-promotions-analysis__lead-paragraph {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--secondary-color);
}

.page-blog-2024-latest-bonus-promotions-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-2024-latest-bonus-promotions-analysis__btn-primary,
.page-blog-2024-latest-bonus-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  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;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-2024-latest-bonus-promotions-analysis__btn-primary {
  background-color: var(--register-button-color);
  color: var(--register-login-font-color);
  border: 2px solid var(--register-button-color);
}

.page-blog-2024-latest-bonus-promotions-analysis__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

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

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

/* General Section Styling */
.page-blog-2024-latest-bonus-promotions-analysis__section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-blog-2024-latest-bonus-promotions-analysis__section:nth-of-type(even) {
  background-color: #f8f8f8; /* Light grey for alternating sections */
}

.page-blog-2024-latest-bonus-promotions-analysis__section-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-2024-latest-bonus-promotions-analysis__sub-title {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-blog-2024-latest-bonus-promotions-analysis__text-block {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-color-dark);
}

.page-blog-2024-latest-bonus-promotions-analysis__link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-2024-latest-bonus-promotions-analysis__link:hover {
  color: #005a2d;
}

.page-blog-2024-latest-bonus-promotions-analysis__highlight {
  font-weight: bold;
  color: var(--primary-color);
}

.page-blog-2024-latest-bonus-promotions-analysis__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

/* Lists */
.page-blog-2024-latest-bonus-promotions-analysis__list,
.page-blog-2024-latest-bonus-promotions-analysis__numbered-list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-blog-2024-latest-bonus-promotions-analysis__numbered-list {
  list-style-type: decimal;
}

.page-blog-2024-latest-bonus-promotions-analysis__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

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

.page-blog-2024-latest-bonus-promotions-analysis__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-2024-latest-bonus-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-blog-2024-latest-bonus-promotions-analysis__faq-question:hover {
  background-color: #e5e5e5;
}

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

.page-blog-2024-latest-bonus-promotions-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-color-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-blog-2024-latest-bonus-promotions-analysis__faq-item[open] .page-blog-2024-latest-bonus-promotions-analysis__faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Responsible Gambling Section specific styling */
.page-blog-2024-latest-bonus-promotions-analysis__responsible-gambling .page-blog-2024-latest-bonus-promotions-analysis__list {
  list-style-type: square;
  color: var(--text-color-dark);
}

/* Conclusion Section */
.page-blog-2024-latest-bonus-promotions-analysis__conclusion .page-blog-2024-latest-bonus-promotions-analysis__cta-buttons {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-2024-latest-bonus-promotions-analysis__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-2024-latest-bonus-promotions-analysis__hero-section {
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-blog-2024-latest-bonus-promotions-analysis__hero-content-wrapper {
    padding: 30px 0;
  }

  .page-blog-2024-latest-bonus-promotions-analysis__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem); /* Adjust H1 for smaller screens */
  }

  .page-blog-2024-latest-bonus-promotions-analysis__lead-paragraph {
    font-size: 1rem;
  }

  .page-blog-2024-latest-bonus-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-2024-latest-bonus-promotions-analysis__btn-primary,
  .page-blog-2024-latest-bonus-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-2024-latest-bonus-promotions-analysis__section {
    padding: 40px 0;
  }

  .page-blog-2024-latest-bonus-promotions-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-2024-latest-bonus-promotions-analysis__sub-title {
    font-size: 1.4rem;
    margin-top: 25px;
  }

  .page-blog-2024-latest-bonus-promotions-analysis__text-block,
  .page-blog-2024-latest-bonus-promotions-analysis__list-item,
  .page-blog-2024-latest-bonus-promotions-analysis__faq-answer p {
    font-size: 0.95rem;
  }

  /* Mobile image responsiveness */
  .page-blog-2024-latest-bonus-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Ensure all containers with images/content are responsive */
  .page-blog-2024-latest-bonus-promotions-analysis__section,
  .page-blog-2024-latest-bonus-promotions-analysis__card,
  .page-blog-2024-latest-bonus-promotions-analysis__container,
  .page-blog-2024-latest-bonus-promotions-analysis__hero-image-wrapper,
  .page-blog-2024-latest-bonus-promotions-analysis__hero-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* FAQ specific mobile adjustments */
  .page-blog-2024-latest-bonus-promotions-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-2024-latest-bonus-promotions-analysis__faq-answer {
    padding: 15px 20px;
  }
}

/* Dark background section for contrast demonstration (if needed) */
.page-blog-2024-latest-bonus-promotions-analysis__dark-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-blog-2024-latest-bonus-promotions-analysis__dark-section .page-blog-2024-latest-bonus-promotions-analysis__section-title,
.page-blog-2024-latest-bonus-promotions-analysis__dark-section .page-blog-2024-latest-bonus-promotions-analysis__sub-title,
.page-blog-2024-latest-bonus-promotions-analysis__dark-section .page-blog-2024-latest-bonus-promotions-analysis__link {
  color: var(--text-color-light);
}

.page-blog-2024-latest-bonus-promotions-analysis__dark-section .page-blog-2024-latest-bonus-promotions-analysis__link:hover {
  color: #c0c0c0;
}