/* =========================
   Sportsbook FAQ (nice + clickable)
   Drop into your CSS file
   ========================= */

.seo-faq{
  max-width: 980px;
  margin: 28px auto;
  padding: 18px 16px;
}

.seo-faq__heading{
  margin: 0 0 14px 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .2px;
}

.seo-faq__list{
  display: block;
}

.seo-faq__item{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  margin: 10px 0;
  overflow: hidden;
}

.seo-faq__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 44px 14px 16px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  position: relative;
  user-select: none;
}

/* remove default marker */
.seo-faq__q::-webkit-details-marker{ display:none; }
.seo-faq__q::marker{ content: ""; }

.seo-faq__q:focus{
  outline: none;
}

.seo-faq__q::after{
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.seo-faq__item[open] .seo-faq__q::after{
  content: "–";
}

.seo-faq__a{
  padding: 0 16px 14px 16px;
}

.seo-faq__a p{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: .95;
}

/* subtle hover */
.seo-faq__q:hover{
  background: rgba(255,255,255,.04);
}

/* dark/light friendliness */
@media (max-width: 640px){
  .seo-faq{
    padding: 14px 12px;
  }
  .seo-faq__heading{
    font-size: 20px;
  }
  .seo-faq__q{
    padding-right: 46px;
  }
}