.block-faq__header {
  max-width: 1200px;
}
.block-faq__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-primary--1);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}
.block-faq__text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
}
.block-faq__text p {
  font-size: 1rem;
}
.block-faq__items {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.paragraph--block-faq-items {
  background: #F5F5F5;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.paragraph--block-faq-items.is-active {
  background: #fff;
}
.block-faq-items__trigger {
  width: 100%;
  padding: 20px 60px 20px 25px;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  background-color: #F9F6F2;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}
.block-faq-items__title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  line-height: 1.3;
  color: var(--color-neutral--dark);
}
.block-faq-items__icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 10.4px;
  height: 18px;
  background-image: url('../../images/block-faq/chevron.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.paragraph--block-faq-items.is-active .block-faq-items__icon {
  transform: translateY(-50%) rotate(180deg);
}
.block-faq-items__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.paragraph--block-faq-items.is-active .block-faq-items__content {
  max-height: 2000px;
}
.block-faq-items__text {
  padding: 0 25px 25px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
.block-faq-items__text p {
  font-size: 1.111rem;
}
@media (min-width: 768px) {
  .paragraph--block-faq {
    padding: 60px 0px;
  }
  .block-faq__header {
    margin-bottom: 4rem;
    margin-top: 2rem;
  }
  .block-faq__title {
    font-size: 2.5rem;
    max-width: 570px;
  }
  .block-faq__text p{
    font-size: 1.222rem;
  }
  .block-faq-items__trigger {
    padding: 25px 70px 25px 30px;
  }
  .block-faq-items__title {
    font-size: 1.25rem;
    max-width: 570px;
  }
  .block-faq-items__icon {
    width: 18px;
    height: 18px;
  }
  .block-faq-items__text {
    padding: 0 30px 30px;
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .paragraph--block-faq {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .paragraph--block-faq .block-faq__header,
  .paragraph--block-faq .block-faq__items {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .block-faq__header {
    position: sticky;
    top: 20px;
    align-self: flex-start;
  }
}
@media (min-width: 1500px) {
  .paragraph--block-faq {
    gap: unset;
  }
}
