/* style/blog-how-to-choose-best-reliable-betting-platform.css */

:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --background-color: #0D0E12;
  --card-background-color: #17191F;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --gradient-button: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-blog-how-to-choose-best-reliable-betting-platform {
  color: var(--text-main-color); /* Body background is dark, so text is light */
  background-color: var(--background-color);
}

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

.page-blog-how-to-choose-best-reliable-betting-platform__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-how-to-choose-best-reliable-betting-platform__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-choose-best-reliable-betting-platform__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 20px; /* Space between image and text */
  padding: 0 20px;
}

.page-blog-how-to-choose-best-reliable-betting-platform__main-title {
  color: var(--text-main-color);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-blog-how-to-choose-best-reliable-betting-platform__intro-description {
  color: var(--text-main-color);
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-reliable-betting-platform__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color); /* Consistent with body background */
  color: var(--text-main-color);
}

.page-blog-how-to-choose-best-reliable-betting-platform__section-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-choose-best-reliable-betting-platform__section-title {
  color: var(--primary-color);
  font-size: 2.2em;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-how-to-choose-best-reliable-betting-platform__paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-how-to-choose-best-reliable-betting-platform__criteria-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-best-reliable-betting-platform__card {
  background-color: var(--card-background-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color);
  color: var(--text-main-color);
}

.page-blog-how-to-choose-best-reliable-betting-platform__card-image {
  width: 100%;
  max-width: 400px; /* Recommended size */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
  min-width: 200px;
}

.page-blog-how-to-choose-best-reliable-betting-platform__card-title {
  color: var(--secondary-color);
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-blog-how-to-choose-best-reliable-betting-platform__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-main-color);
}

.page-blog-how-to-choose-best-reliable-betting-platform__faq-container {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-best-reliable-betting-platform__faq-item {
  background-color: var(--card-background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-how-to-choose-best-reliable-betting-platform__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--secondary-color);
  position: relative;
}

.page-blog-how-to-choose-best-reliable-betting-platform__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-best-reliable-betting-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-blog-how-to-choose-best-reliable-betting-platform__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-how-to-choose-best-reliable-betting-platform__faq-item[open] .page-blog-how-to-choose-best-reliable-betting-platform__faq-toggle {
  content: '−';
}

.page-blog-how-to-choose-best-reliable-betting-platform__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main-color);
}

.page-blog-how-to-choose-best-reliable-betting-platform__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-reliable-betting-platform__btn-primary,
.page-blog-how-to-choose-best-reliable-betting-platform__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-best-reliable-betting-platform__btn-primary {
  background: var(--gradient-button);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

.page-blog-how-to-choose-best-reliable-betting-platform__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-how-to-choose-best-reliable-betting-platform__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-choose-best-reliable-betting-platform__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-best-reliable-betting-platform__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__section-title {
    font-size: 2em;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__criteria-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-best-reliable-betting-platform {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body handles --header-offset, this is for visual spacing */
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__hero-content {
    margin-top: 15px;
    padding: 0 15px;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__intro-description {
    font-size: 1em;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__paragraph {
    font-size: 0.95em;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__content-area,
  .page-blog-how-to-choose-best-reliable-betting-platform__section-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__card-image {
    min-width: 200px !important; /* Ensure min size */
    max-width: 100% !important;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__card {
    padding: 20px;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__card-title {
    font-size: 1.3em;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__faq-answer {
    padding: 0 20px 15px;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__btn-primary,
  .page-blog-how-to-choose-best-reliable-betting-platform__btn-secondary {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-best-reliable-betting-platform__main-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__section-title {
    font-size: 1.6em;
  }
  .page-blog-how-to-choose-best-reliable-betting-platform__card-image {
    max-width: 100%;
  }
}