.home-faq-6__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.home-faq-6__intro .home-6-call {
  margin-top: 34px;
}

.home-faq-6__accordion {
  border-top: 1px solid #e6ebef;
}

.home-faq-6__item {
  border-bottom: 1px solid #e6ebef;
}

.home-faq-6__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
  border: 0;
  background: transparent;
  color: #181c22;
  font-family: var(--font-family-display);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.home-faq-6__icon {
  flex: 0 0 auto;
  color: #5c626b;
  font-size: 30px;
  line-height: 1;
}

.home-faq-6__answer {
  display: none;
  padding: 0 0 26px;
}

.home-faq-6__item.is-open .home-faq-6__answer {
  display: block;
}

.home-faq-6__answer p {
  margin: 0;
  color: #434850;
  font-size: 17px;
  line-height: 1.48;
}

@media (max-width: 1080px) {
  .home-faq-6__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .home-faq-6__question {
    font-size: 18px;
    padding: 20px 0;
  }

  .home-faq-6__answer p {
    font-size: 16px;
  }
}
