/* Superr FAQ geometry; Arabic uses the page's existing local font families. */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 40px;
  background: #fdfbf9;
  color: #2b1a07;
}

.faq__content {
  width: 100%;
  max-width: 720px;
  min-width: 0;
}

.faq__title {
  margin: 0 0 48px;
  font-family: "Dioni Doodle Serif", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.faq__question {
  display: block;
  width: 100%;
  margin: 0;
  padding: 24px 0 0;
  border: 0;
  background: transparent;
  color: #2b1a07;
  font-family: "Rubik Dioni", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: start;
  list-style: none;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  content: "";
}

.faq__question:hover {
  opacity: 0.8;
}

.faq__question:focus-visible {
  outline: 2px solid #8a7b6a;
  outline-offset: 4px;
  border-radius: 2px;
}

.faq__answer {
  overflow: hidden;
}

.faq__answer-inner {
  padding-top: 8px;
}

.faq__answer p {
  margin: 0;
  color: #8a7b6a;
  font-family: "Rubik Dioni", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: start;
}

.faq__spacer {
  height: 20px;
}

.faq__separator {
  display: block;
  width: 100%;
  height: 2px;
}

@media (min-width: 768px) {
  .faq {
    padding: 96px 24px 80px;
  }

  .faq__title {
    margin-bottom: 64px;
    font-size: 40px;
  }

  .faq__question,
  .faq__answer p {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .faq {
    padding-bottom: 160px;
  }
}
