.editorial .items {
  margin-top: 3rem;
}
.editorial .answer {
  max-width: 800px;
}
.editorial .answer p:first-child {
  margin-top: 0;
}
.editorial .faqs {
  margin-bottom: 1rem;
}
.question {
  border-bottom: 1px solid rgba(44, 43, 48, 0.08);
}
.question:first-child {
  border-top: 1px solid rgba(44, 43, 48, 0.08);
}
.question button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  font-family: starling, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.0625rem;
  color: var(--off-black);
}
.question button::after {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 15px;
  height: 10px;
  background-image: url("../img/chevron.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.question.open > button::after {
  transform: rotate(180deg);
}
.answer {
  display: none;
  padding-bottom: 1.5rem;
}
.question.open > .answer {
  display: block;
}
.answer p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
