.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-layout aside {
  position: sticky;
  top: 30px;
  background: var(--paper);
  padding: 35px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.faq-item button span {
  display: flex;
  gap: 20px;
}
.faq-item button b {
  color: var(--gold);
}
.faq-item button i {
  font-style: normal;
  font-size: 24px;
  transition: 0.3s;
}
.faq-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}
.answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s;
}
.answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}
.faq-item button[aria-expanded="true"] + .answer {
  grid-template-rows: 1fr;
}
.faq-item button[aria-expanded="true"] + .answer p {
  padding-bottom: 24px;
}
@media (max-width: 800px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-layout aside {
    position: static;
  }
}
