@charset "utf-8";

/* ==========================================
  FAQ Section Styles
========================================== */

.bz-faq {
  background-color: var(--color__black);
  color: var(--color__gray);
  padding: 60px 0 60px;
  padding: 3.75rem 0 3.75rem;
  margin-top: -1px;
  margin-top: -0.0625rem;
}

.bz-faq__inner {
  width: 87%;
  margin: auto;
}

.bz-faq__subttl {
  color: var(--color__white);
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.bz-faq__list-item {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  border-bottom: solid 1px #e7e7e73d;
  border-bottom: solid 0.0625rem #e7e7e73d;
}

.bz-faq__list-item:last-child {
  border-bottom: initial;
  margin-bottom: initial;
}

.bz-faq__list-item dl {
  width: 100%;
  padding-left: 10%;
}

.bz-faq__list-item dl dt {
  color: var(--color__gray);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  position: relative;
  /* padding-left: 30px; */
  /* padding-left: 1.875rem; */
  font-weight: bold;
  cursor: pointer;
  padding-right: 2em;
}

.bz-faq__list-item dl dt::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color__gray);
  transition: transform 0.3s ease;
}

.bz-faq__list-item.is-active dl dt {
  margin-bottom: 0.625rem;
}

.bz-faq__list-item.is-active dl dt::after {
  content: "−";
}

.bz-faq__list-item dl dt::before {
  content: "Q";
  position: absolute;
  left: -1.3em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-family__base);
  font-size: 22px;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.54px;
  letter-spacing: 0.09625rem;
  opacity: 0.3;
  background: var(--color__white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bz-faq__list-item dl dd {
  color: var(--color__gray);
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: none;
  opacity: 0;
}

/* Media Queries
------------------------------ */
@media (min-width: 768px) {
  .bz-faq {
    padding: 102px 0 108px;
    padding: 6.375rem 0 6.75rem;
  }

  .bz-faq__inner {
    max-width: 700px;
  }

  .bz-faq__list-item dl {
    padding: 0 5% 0 10%;
  }

  .bz-faq__list-item dl dt {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .bz-faq__list-item dl dt span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
