/* style/blog-2024-online-betting-trends.css */

.page-blog-2024-online-betting-trends {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-2024-online-betting-trends__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: #08160F; /* Background */
  position: relative;
  overflow: hidden;
}

.page-blog-2024-online-betting-trends__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-blog-2024-online-betting-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-2024-online-betting-trends__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-2024-online-betting-trends__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-2024-online-betting-trends__lead-paragraph {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-2024-online-betting-trends__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-2024-online-betting-trends__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-blog-2024-online-betting-trends__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-2024-online-betting-trends__btn-secondary {
  background: transparent;
  color: #11A84E; /* Main Color */
  border: 2px solid #11A84E; /* Border */
  margin-left: 15px;
}

.page-blog-2024-online-betting-trends__btn-secondary:hover {
  background: rgba(17, 168, 78, 0.1);
  transform: translateY(-2px);
}

.page-blog-2024-online-betting-trends__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-2024-online-betting-trends__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-2024-online-betting-trends__sub-title {
  font-size: 1.8em;
  color: #11A84E; /* Main Color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-2024-online-betting-trends__article-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-2024-online-betting-trends__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-2024-online-betting-trends__faq-list {
  margin-top: 40px;
}

.page-blog-2024-online-betting-trends__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-2024-online-betting-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.page-blog-2024-online-betting-trends__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-2024-online-betting-trends__faq-qtext {
  flex-grow: 1;
}

.page-blog-2024-online-betting-trends__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #2AD16F; /* Button color for toggle */
}

.page-blog-2024-online-betting-trends__faq-answer {
  padding: 0 25px 18px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-2024-online-betting-trends__faq-answer p {
  margin-bottom: 0;
}

.page-blog-2024-online-betting-trends__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* General image and container responsive styles */
.page-blog-2024-online-betting-trends img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

.page-blog-2024-online-betting-trends__section,
.page-blog-2024-online-betting-trends__container,
.page-blog-2024-online-betting-trends__card {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-2024-online-betting-trends {
    font-size: 16px;
    line-height: 1.5;
  }

  .page-blog-2024-online-betting-trends__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles --header-offset */
    padding-bottom: 30px;
  }

  .page-blog-2024-online-betting-trends__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-blog-2024-online-betting-trends__lead-paragraph {
    font-size: 1em;
  }

  .page-blog-2024-online-betting-trends__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    margin-bottom: 15px !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-2024-online-betting-trends__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-blog-2024-online-betting-trends__btn-secondary {
    margin-left: 0 !important;
  }

  .page-blog-2024-online-betting-trends__content-area {
    padding: 30px 15px;
  }

  .page-blog-2024-online-betting-trends__section-title {
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-2024-online-betting-trends__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-2024-online-betting-trends__article-image {
    margin: 20px 0;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-2024-online-betting-trends__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-2024-online-betting-trends__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }

  /* General image and container responsive styles for mobile */
  .page-blog-2024-online-betting-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-2024-online-betting-trends__section,
  .page-blog-2024-online-betting-trends__card,
  .page-blog-2024-online-betting-trends__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}