.eob-article-faq {
  margin-top: 5em;
}
.eob-article-faq .article-faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.eob-article-faq .article-faq-list .list-item {
  --arrow-rotation: 90deg;
  --text-display: none;
  border-bottom: 1px solid #ededed;
  padding-bottom: 22px;
}
.eob-article-faq .article-faq-list .list-item.is-active {
  --arrow-rotation: -90deg;
  --text-display: block;
}
.eob-article-faq .article-faq-list .list-item .list-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  cursor: pointer;
  user-select: none;
}
.eob-article-faq .article-faq-list .list-item .list-item-title .arrow svg {
  transform: rotate(var(--arrow-rotation));
}
.eob-article-faq .article-faq-list .list-item .list-item-text {
  display: var(--text-display, "none");
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0;
  margin: 1em 0 0;
  padding: 0;
}
