.faq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem 1rem;
  margin-block-end: 3rem;
}

.faq__info,
.faq__img {
  max-width: 28.5rem;
  width: 50%;
}

.faq__info_title {
  margin-block-end: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.faq__item {
  margin-block-end: 0.6rem;
  cursor: pointer;
}

.faq__item_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
  margin-block-end: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}

.faq__item_title span {
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(-90deg);
  transition: transform 150ms;
}

.faq__item_title.open span {
  transform: rotate(0);
}

.faq__item_text {
  display: none;
  padding-inline-start: 0.6rem;
  font-size: 0.8rem;
  line-height: 1.25;
  border-left: 2px solid var(--main-bg);
}

.faq__item_text.open {
  display: block;
}

.faq__img {
  position: relative;
  padding-block-start: 40%;
}

.faq__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min-content;
  padding: 1rem;
  color: var(--content-bg);
}

.faq__content h4 {
  margin-block-end: .6rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq__content p {
  margin-block-end: .6rem;
  font-size: 1rem;
}

@media screen and (max-width: 992px) {
  .faq {
    flex-direction: column;
  }

  .faq__info,
  .faq__img {
    max-width: 100%;
    width: 100%;
  }
}
