/* style/blog-how-to-choose-betting-platform.css */
.page-blog-how-to-choose-betting-platform {
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-choose-betting-platform__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-how-to-choose-betting-platform__hero-image {
  width: 100%;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-blog-how-to-choose-betting-platform__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-betting-platform__main-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem); /* H1 font size constraint */
  font-weight: 700;
  line-height: 1.2;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-blog-how-to-choose-betting-platform__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-blog-how-to-choose-betting-platform__section {
  padding: 60px 0;
}

.page-blog-how-to-choose-betting-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-betting-platform__section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-how-to-choose-betting-platform__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-blog-how-to-choose-betting-platform__feature-card {
  display: flex;
  align-items: flex-start;
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  gap: 30px;
}

.page-blog-how-to-choose-betting-platform__feature-image {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-blog-how-to-choose-betting-platform__feature-content {
  flex-grow: 1;
}

.page-blog-how-to-choose-betting-platform__feature-title {
  font-size: 1.8rem;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-choose-betting-platform__feature-content p {
  font-size: 1rem;
  color: #FFF3E6;
}

.page-blog-how-to-choose-betting-platform__dark-section {
  background: #0D0E12; /* Background */
  color: #FFF3E6;
}

.page-blog-how-to-choose-betting-platform__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-blog-how-to-choose-betting-platform__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
}

.page-blog-how-to-choose-betting-platform__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%); /* Slightly lighter on hover */
  box-shadow: 0 0 15px rgba(255, 176, 77, 0.6);
}

.page-blog-how-to-choose-betting-platform__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FF8C1A; /* Primary color text */
  border: 2px solid #FF8C1A; /* Primary color border */
}

.page-blog-how-to-choose-betting-platform__btn-secondary:hover {
  background: #FF8C1A;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 140, 26, 0.6);
}

.page-blog-how-to-choose-betting-platform__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-blog-how-to-choose-betting-platform__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-blog-how-to-choose-betting-platform__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-how-to-choose-betting-platform__list-item strong {
  color: #FFA53A;
}

/* FAQ Section */
.page-blog-how-to-choose-betting-platform__faq-section {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
}

.page-blog-how-to-choose-betting-platform__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-choose-betting-platform__faq-item {
  background: #0D0E12; /* Background */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF3E6;
}

.page-blog-how-to-choose-betting-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFB04D; /* Glow */
  cursor: pointer;
  background: #17191F; /* Card BG */
  border-bottom: 1px solid transparent; /* default */
  user-select: none;
  list-style: none; /* Remove default marker for summary */
}

.page-blog-how-to-choose-betting-platform__faq-item[open] > .page-blog-how-to-choose-betting-platform__faq-question {
  border-bottom-color: #A84F0C; /* Border on open */
}

.page-blog-how-to-choose-betting-platform__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-betting-platform__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-choose-betting-platform__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #FF8C1A;
}

.page-blog-how-to-choose-betting-platform__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #FFF3E6;
}

.page-blog-how-to-choose-betting-platform__faq-answer p {
  margin-bottom: 10px;
}

/* Conclusion Section */
.page-blog-how-to-choose-betting-platform__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-how-to-choose-betting-platform__hero-content {
    max-width: 768px;
  }

  .page-blog-how-to-choose-betting-platform__feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-blog-how-to-choose-betting-platform__feature-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-betting-platform {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-betting-platform__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-how-to-choose-betting-platform__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-how-to-choose-betting-platform__description {
    font-size: 1rem;
  }

  .page-blog-how-to-choose-betting-platform__section {
    padding: 40px 0;
  }

  .page-blog-how-to-choose-betting-platform__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-choose-betting-platform__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-how-to-choose-betting-platform__feature-card {
    padding: 20px;
  }

  .page-blog-how-to-choose-betting-platform__feature-title {
    font-size: 1.5rem;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-choose-betting-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile button responsiveness */
  .page-blog-how-to-choose-betting-platform__cta-button,
  .page-blog-how-to-choose-betting-platform__btn-primary,
  .page-blog-how-to-choose-betting-platform__btn-secondary,
  .page-blog-how-to-choose-betting-platform a[class*="button"],
  .page-blog-how-to-choose-betting-platform a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-how-to-choose-betting-platform__cta-buttons,
  .page-blog-how-to-choose-betting-platform__button-group,
  .page-blog-how-to-choose-betting-platform__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
  }

  .page-blog-how-to-choose-betting-platform__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-how-to-choose-betting-platform__faq-answer {
    padding: 15px 20px;
  }

  .page-blog-how-to-choose-betting-platform__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }
}