/* stylelint-disable kikan/bem -- This plain CSS file extends the LP's existing FAQ classes. */

.faq__status {
  margin: 0;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  color: #6f7b87;
  text-align: center;
}

.faq__item {
  overflow: hidden;
}

.faq__q {
  margin: 0;
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q:focus-visible {
  outline: 3px solid rgb(23 86 169 / 35%);
  outline-offset: 3px;
}

.faq__q-text {
  flex: 1;
}

.faq__toggle {
  width: 10px;
  height: 10px;
  margin: 0 8px 5px 16px;
  border-right: 2px solid #1756a9;
  border-bottom: 2px solid #1756a9;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__toggle {
  margin-bottom: -5px;
  transform: rotate(225deg);
}

.faq__a {
  padding: 8px 36px 4px 32px;
  line-height: 1.7;
}

.faq__a > :first-child {
  margin-top: 0;
}

.faq__a > :last-child {
  margin-bottom: 0;
}

.faq__a a {
  color: #075eb9;
  text-decoration: underline;
}

@media (max-width: 756px) {
  .faq__a {
    padding-right: 8px;
    padding-left: 28px;
  }
}
