.faq {
  margin-top: 40px;
  border-top: 1px solid var(--line-soft);
}

.faq__item {
  border-bottom: 1px solid var(--line-soft);
}

.faq__item summary {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 4px;
  color: var(--navy);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.01em;
  cursor: pointer;
  list-style: none;
  transition: color .24s var(--ease);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary:hover { color: var(--red); }

.faq__item summary > span:first-child { flex: 1 1 auto; }

.faq__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.faq__mark svg { width: 15px; height: 15px; }

.faq__item summary:hover .faq__mark {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.faq__item[open] .faq__mark {
  transform: rotate(45deg);
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.faq__answer {
  padding: 0 54px 26px 4px;
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.75;
}

.faq__answer a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__answer a:hover { color: var(--red); }

.faq__answer strong { color: var(--ink); }

@media (prefers-reduced-motion: no-preference) {
  .faq__item[open] .faq__answer {
    animation: faq-open .32s var(--ease);
  }
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 780px) {
  .faq__item summary {
    gap: 14px;
    padding: 20px 2px;
    font-size: 1rem;
  }

  .faq__answer { padding: 0 0 22px; }
}
