/* style/resources-how-to-choose-inplay-platform.css */
.page-resources-how-to-choose-inplay-platform {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

.page-resources-how-to-choose-inplay-platform__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 60px;
  text-align: center;
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-resources-how-to-choose-inplay-platform__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-how-to-choose-inplay-platform__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-resources-how-to-choose-inplay-platform__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #F0F0F0;
}

.page-resources-how-to-choose-inplay-platform__hero-image {
  margin: 40px auto;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-choose-inplay-platform__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.page-resources-how-to-choose-inplay-platform__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-how-to-choose-inplay-platform__cta-button:hover {
  background-color: #FFD700;
  transform: translateY(-2px);
}

.page-resources-how-to-choose-inplay-platform__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-resources-how-to-choose-inplay-platform__content-area {
  max-width: 800px; /* Optimal reading width for long articles */
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-resources-how-to-choose-inplay-platform__table-of-contents {
  background-color: #F8F8F8;
  border-left: 4px solid #FCBC45;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 5px;
}

.page-resources-how-to-choose-inplay-platform__toc-title {
  font-size: 1.5em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-how-to-choose-inplay-platform__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-how-to-choose-inplay-platform__toc-list li a {
  text-decoration: none;
  color: #333333;
  display: block;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.page-resources-how-to-choose-inplay-platform__toc-list li a:hover {
  color: #FCBC45;
}

.page-resources-how-to-choose-inplay-platform__section {
  margin-bottom: 50px;
}

.page-resources-how-to-choose-inplay-platform__section-title {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-resources-how-to-choose-inplay-platform__subsection-title {
  font-size: 1.6em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-how-to-choose-inplay-platform__content-area p {
  margin-bottom: 1em;
}

.page-resources-how-to-choose-inplay-platform__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-resources-how-to-choose-inplay-platform__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure block-level for margin auto to work */
  margin: 0 auto; /* Center image */
  min-width: 200px; /* Enforce min image width */
  min-height: 200px; /* Enforce min image height */
}

.page-resources-how-to-choose-inplay-platform__list {
  list-style: disc inside;
  margin-bottom: 1em;
  padding-left: 20px;
}

.page-resources-how-to-choose-inplay-platform__list li {
  margin-bottom: 0.5em;
}

.page-resources-how-to-choose-inplay-platform__cta-inline {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-choose-inplay-platform__cta-inline:hover {
  background-color: #FFD700;
}

.page-resources-how-to-choose-inplay-platform__faq-item {
  background-color: #F8F8F8;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-resources-how-to-choose-inplay-platform__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-how-to-choose-inplay-platform__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-resources-how-to-choose-inplay-platform__conclusion-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
}

.page-resources-how-to-choose-inplay-platform__conclusion-section .page-resources-how-to-choose-inplay-platform__section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-resources-how-to-choose-inplay-platform__conclusion-section p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #F0F0F0;
}

.page-resources-how-to-choose-inplay-platform__return-link-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-how-to-choose-inplay-platform__return-link {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #000000;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-how-to-choose-inplay-platform__return-link:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-how-to-choose-inplay-platform__hero-title {
    font-size: 2em;
  }

  .page-resources-how-to-choose-inplay-platform__hero-description {
    font-size: 1em;
  }

  .page-resources-how-to-choose-inplay-platform__section-title {
    font-size: 1.7em;
  }

  .page-resources-how-to-choose-inplay-platform__subsection-title {
    font-size: 1.4em;
  }

  .page-resources-how-to-choose-inplay-platform__content-area {
    padding: 0 15px;
    font-size: 0.95em;
  }

  .page-resources-how-to-choose-inplay-platform__image-wrapper img {
    max-width: 100%;
    height: auto;
  }

  /* Enforce mobile image responsiveness */
  .page-resources-how-to-choose-inplay-platform img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-inplay-platform__hero-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-choose-inplay-platform__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-how-to-choose-inplay-platform__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-resources-how-to-choose-inplay-platform__section-title {
    font-size: 1.5em;
  }

  .page-resources-how-to-choose-inplay-platform__subsection-title {
    font-size: 1.2em;
  }
}