.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
}

#faq h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.faq-list {
  border-top: 1px solid var(--border-bone-10);
}

.faq-item {
  border-bottom: 1px solid var(--border-bone-10);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.faq-plus {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 24px;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 44px 24px 0;
  color: var(--steel-light);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}
