.rq-faq {
  padding: clamp(60px, 7vw, 96px) 0;
  background: var(--white);
}
.rq-faq .rq-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .rq-faq .rq-faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.rq-faq .rq-faq-aside {
  position: sticky;
  top: 120px;
}
@media (max-width: 900px) {
  .rq-faq .rq-faq-aside {
    position: static;
    top: auto;
  }
}
.rq-faq .rq-faq-aside h2 {
  margin: 14px 0 0;
}
.rq-faq .rq-faq-lede {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.rq-faq .rq-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 3px;
  text-decoration: none;
}
.rq-faq .rq-faq-cta .arrow {
  transition: transform 0.25s ease;
}
.rq-faq .rq-faq-cta:hover {
  color: var(--sand-text);
}
.rq-faq .rq-faq-cta:hover .arrow {
  transform: translateX(4px);
}
.rq-faq .rq-faq-list {
  border-top: 1px solid var(--line);
}
.rq-faq .rq-faq-item {
  border-bottom: 1px solid var(--line);
}
.rq-faq .rq-faq-item summary {
  list-style: none;
}
.rq-faq .rq-faq-item summary::-webkit-details-marker {
  display: none;
}
.rq-faq .rq-faq-item summary::marker {
  content: "";
}
.rq-faq .rq-faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 22px 4px 22px 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  transition: color 0.2s ease;
}
.rq-faq .rq-faq-q:hover {
  color: var(--sand-text);
}
.rq-faq .rq-faq-q:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
  border-radius: 2px;
}
@media (max-width: 640px) {
  .rq-faq .rq-faq-q {
    font-size: 15px;
    padding: 18px 2px 18px 0;
  }
}
.rq-faq .rq-faq-mark {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 4px;
}
.rq-faq .rq-faq-mark::before, .rq-faq .rq-faq-mark::after {
  content: "";
  position: absolute;
  background: var(--sand-text);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.rq-faq .rq-faq-mark::before {
  top: 7.5px;
  left: 0;
  width: 16px;
  height: 1px;
}
.rq-faq .rq-faq-mark::after {
  left: 7.5px;
  top: 0;
  width: 1px;
  height: 16px;
}
.rq-faq .rq-faq-item[open] .rq-faq-mark::after {
  transform: scaleY(0);
  opacity: 0;
}
.rq-faq .rq-faq-a-wrap {
  overflow: hidden;
}
.rq-faq .rq-faq-a {
  padding: 0 48px 26px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 62ch;
}
.rq-faq .rq-faq-a p {
  margin: 0 0 12px;
}
.rq-faq .rq-faq-a p:last-child {
  margin-bottom: 0;
}
.rq-faq .rq-faq-a a {
  color: var(--ink);
  border-bottom: 1px solid var(--sand);
}
.rq-faq .rq-faq-a strong {
  color: var(--ink);
}
@media (max-width: 640px) {
  .rq-faq .rq-faq-a {
    padding-right: 8px;
    font-size: 14px;
  }
}
.rq-faq.js .rq-faq-a-wrap {
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .rq-faq.js .rq-faq-a-wrap {
    transition: none;
  }
  .rq-faq .rq-faq-mark::before,
  .rq-faq .rq-faq-mark::after {
    transition: none;
  }
}