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

/* Base styles for the page */
.page-blog-how-to-choose-reliable-betting-site {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color from custom palette */
  background-color: var(--background, #08160F); /* Default background color from custom palette */
}

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

/* Hero Section */
.page-blog-how-to-choose-reliable-betting-site__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-reliable-betting-site__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit height for aesthetic */
  margin-bottom: 30px;
}

.page-blog-how-to-choose-reliable-betting-site__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-how-to-choose-reliable-betting-site__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
}

.page-blog-how-to-choose-reliable-betting-site__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-choose-reliable-betting-site__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button color */
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-reliable-betting-site__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Content Area */
.page-blog-how-to-choose-reliable-betting-site__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-reliable-betting-site__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main, #F2FFF6);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-how-to-choose-reliable-betting-site__sub-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-reliable-betting-site p {
  font-size: 1.05rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 15px;
  line-height: 1.7;
}

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

.page-blog-how-to-choose-reliable-betting-site__card {
  background-color: var(--card-bg, #11271B); /* Custom card background */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--border, #2E7A4E); /* Custom border color */
}

.page-blog-how-to-choose-reliable-betting-site__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-blog-how-to-choose-reliable-betting-site__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
}

.page-blog-how-to-choose-reliable-betting-site__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-reliable-betting-site__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-secondary, #A7D9B8);
  font-size: 1.05rem;
}

.page-blog-how-to-choose-reliable-betting-site__list li::before {
  content: '✔';
  color: var(--glow, #57E38D); /* Custom glow color */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-blog-how-to-choose-reliable-betting-site__image-text-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: var(--card-bg, #11271B);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border, #2E7A4E);
}

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

.page-blog-how-to-choose-reliable-betting-site__cta-block {
  background-color: var(--deep-green, #0A4B2C); /* Custom deep green color */
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  border: 1px solid var(--border, #2E7A4E);
}

.page-blog-how-to-choose-reliable-betting-site__cta-image {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-choose-reliable-betting-site__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--text-main, #F2FFF6);
  color: var(--deep-green, #0A4B2C); /* Text color from custom deep green */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid var(--deep-green, #0A4B2C);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.page-blog-how-to-choose-reliable-betting-site__btn-secondary:hover {
  background: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
  border-color: var(--text-main, #F2FFF6);
}

/* FAQ Section */
.page-blog-how-to-choose-reliable-betting-site__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-choose-reliable-betting-site__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--divider, #1E3A2A); /* Custom divider color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-choose-reliable-betting-site__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  background-color: var(--card-bg, #11271B);
  transition: background-color 0.3s ease;
}

.page-blog-how-to-choose-reliable-betting-site__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
}

.page-blog-how-to-choose-reliable-betting-site__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--glow, #57E38D);
}

.page-blog-how-to-choose-reliable-betting-site__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary, #A7D9B8);
  font-size: 1rem;
  line-height: 1.7;
}

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

.page-blog-how-to-choose-reliable-betting-site__faq-item summary {
  list-style: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-how-to-choose-reliable-betting-site__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-how-to-choose-reliable-betting-site__hero-description {
    font-size: 1rem;
  }
  .page-blog-how-to-choose-reliable-betting-site__section-title {
    font-size: 2rem;
  }
  .page-blog-how-to-choose-reliable-betting-site__sub-section-title {
    font-size: 1.6rem;
  }
  .page-blog-how-to-choose-reliable-betting-site__image-text-block {
    flex-direction: column;
  }
  .page-blog-how-to-choose-reliable-betting-site__content-image {
    width: 100%;
    height: auto;
  }
  .page-blog-how-to-choose-reliable-betting-site__cta-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-reliable-betting-site {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-how-to-choose-reliable-betting-site__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-how-to-choose-reliable-betting-site__hero-content {
    padding: 0 15px;
  }
  .page-blog-how-to-choose-reliable-betting-site__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-how-to-choose-reliable-betting-site__hero-description {
    font-size: 0.95rem;
  }
  .page-blog-how-to-choose-reliable-betting-site__section-title {
    font-size: 1.8rem;
  }
  .page-blog-how-to-choose-reliable-betting-site__sub-section-title {
    font-size: 1.4rem;
  }
  .page-blog-how-to-choose-reliable-betting-site__content-area,
  .page-blog-how-to-choose-reliable-betting-site__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-choose-reliable-betting-site__grid-container {
    grid-template-columns: 1fr;
  }
  .page-blog-how-to-choose-reliable-betting-site__card {
    padding: 20px;
  }
  .page-blog-how-to-choose-reliable-betting-site__card-image,
  .page-blog-how-to-choose-reliable-betting-site__content-image,
  .page-blog-how-to-choose-reliable-betting-site__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-blog-how-to-choose-reliable-betting-site__cta-block {
    padding: 30px 15px;
  }
  .page-blog-how-to-choose-reliable-betting-site__btn-primary,
  .page-blog-how-to-choose-reliable-betting-site__btn-secondary,
  .page-blog-how-to-choose-reliable-betting-site a[class*="button"],
  .page-blog-how-to-choose-reliable-betting-site 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-reliable-betting-site__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-how-to-choose-reliable-betting-site__faq-answer {
    padding: 0 20px 15px;
  }
  .page-blog-how-to-choose-reliable-betting-site__image-text-block {
    padding: 20px;
  }
}

/* Ensure no filter properties are used on images */
.page-blog-how-to-choose-reliable-betting-site img {
  filter: none; /* Explicitly remove any potential filter */
}