.faq__items {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.paragraph--faq-item {
  border-top: 1px solid #c2c7d6;
  width: 100%;
}
.paragraph--faq-item:last-child {
  border-bottom: 1px solid #c2c7d6;
}
.faq-item__trigger {
  width: 100%;
  padding: 25px 0;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  background: transparent;
  transition: background-color 0.3s ease;
  display: block;
}
.faq-item__title {
  font-weight: 700;
  display: block;
  line-height: 1.3;
  color: var(--color-neutral--dark);
}
.faq-item__title p {
  font-size: var(--title-m);
  margin: 0;
}
.faq-item__icon {
  position: absolute;
  right: 25px;
  top: 60%;
  transform: translateY(-50%) rotate(180deg);
  width: 10.4px;
  height: 18px;
  background-image: url('../../images/faq/chevron-faq.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.paragraph--faq-item.is-active .faq-item__icon {
  transform: translateY(-50%);
}
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.paragraph--faq-item.is-active .faq-item__content {
  max-height: 2000px;
}
.faq-item__text {
  padding-bottom: 25px;
  font-size: var(--font-size-m);
  line-height: 1.5;
  font-family: Fraunces;
}
.faq-item__text p {
  font-size: var(--font-size-m);
}
.faq-item__text a {
  color: unset;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.faq-item__text a:hover {
  color: var(--color-secondary--1);
}
.faq-item__text p:first-child {
  margin-top: 0;
}
.faq-item__text p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .paragraph--faq-wrapper {
    padding-top: 10px;
    padding-bottom: 60px;
  }
  .faq-item__icon {
    width: 18px;
    height: 18px;
  }
  .faq-item__text {
    padding-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .paragraph--faq-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
}
@media (min-width: 1500px) {
  .paragraph--faq-wrapper {
    gap: unset;
  }
}