.faq-content {
  width: 100%;
  padding: 48px 0;
}

.faq-content__container {
  max-width: 1100px;
  counter-reset: faq-section;
}

.faq-list {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.faq-list h3 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
  font-family: "AvantGardeBold", Arial, sans-serif;
}

.faq-list h3::before {
  counter-increment: faq-section;
  content: counter(faq-section, decimal-leading-zero) ".";
  font-family: "AvantGardeBold", Arial, sans-serif;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0 1px 2px 0,
    rgba(60, 64, 67, 0.15) 0 2px 6px 2px;
}

.faq-item__trigger {
  position: relative;
  width: 100%;
  padding: 24px 48px 24px 24px;
  color: #000;
  background: #fff;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: "AvantGardeBold", Arial, sans-serif;
}

.faq-item__trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 7px;
  background-image: url("../img/btn-open.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: transform 280ms ease, opacity 280ms ease;
}

.faq-item.is-open .faq-item__trigger::after {
  background-image: url("../img/btn-close.png");
}

.faq-item__question {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-family: "AvantGardeBold", Arial, sans-serif;
}

.faq-item__panel {
  height: 0;
  padding: 0 24px;
  overflow: hidden;
  opacity: 0;
  transition:
    height 320ms ease,
    opacity 220ms ease,
    padding-bottom 320ms ease;
}

.faq-item.is-open .faq-item__panel {
  opacity: 1;
  padding-bottom: 24px;
}

.faq-item__panel p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  font-family: "AvantGardeMedium", Arial, sans-serif;
}

.faq-item__panel p + p {
  margin-top: 16px;
}

.faq-item__panel a {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 799px) {
  .faq-content {
    padding: 0 0 16px;
  }

  .faq-content__container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .faq-item__trigger {
    padding: 20px 44px 20px 20px;
  }

  .faq-item__panel {
    padding: 0 20px;
  }

  .faq-item.is-open .faq-item__panel {
    padding-bottom: 20px;
  }
}