.faq__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.faq__wrapper .fullText {
  display: none;
}
.faq__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 50px;
  background-color: #ffffff;
  background-image: url(/img/blocks/faq/angle.svg);
  background-repeat: no-repeat;
  background-position: right top;
  box-shadow: 0px 51px 71px -11px rgba(224, 232, 232, 0.46);
  border-radius: 8px;
}
.faq__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
}
.faq__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
.faq__item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .faq__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .faq__wrapper {
    grid-template-columns: 1fr;
  }
  .faq__item {
    background: none;
    box-shadow: none;
    padding: 0;
    height: auto;
  }
  .faq__title {
    font-size: 14px;
    line-height: 150%;
  }
  .faq__description {
    display: none;
    font-size: 12px;
    line-height: 160%;
  }
  .faq__button-block {
    display: none;
  }
  .faq__open-button {
    display: block;
    height: 30px;
    width: 30px;
    background-image: url(/img/ui/icons/open-button.svg);
    background-position: center center;
    background-repeat: no-repeat;
  }
  .faq__item-open .faq__description {
    display: block;
  }
  .faq__item-open .faq__open-button {
    background-image: url(/img/ui/icons/close-button.svg);
  }
  .faq .title-with-link {
    flex-direction: row;
    align-items: center;
  }
}
