/* MarkZip — FAQ (details/summary); подключается на index и ask-us */

.mz-faq {
  margin-top: clamp(2rem, 4vw, 2.5rem);
  border-top: 1px solid #222221;
}

.mz-faq-item {
  border-bottom: 1px solid #222221;
}

.mz-faq-item summary {
  list-style: none;
}

.mz-faq-item summary::-webkit-details-marker {
  display: none;
}

.mz-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 700;
  color: #222221;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mz-faq-q::after {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #222221;
  border-bottom: 2px solid #222221;
  transform: rotate(45deg);
  margin-top: -0.25rem;
  transition: transform 0.2s ease;
}

.mz-faq-item[open] .mz-faq-q::after {
  transform: rotate(225deg);
  margin-top: 0.15rem;
}

.mz-faq-a {
  padding: 0 0 1.25rem;
  margin: 0;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  color: #4b5563;
  line-height: 1.55;
}

.mz-faq-more {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
}

.mz-faq-more a {
  font-weight: 600;
  color: var(--mz-ink-deep);
  text-decoration: none;
}

.mz-faq-more a:hover {
  color: var(--mz-purple);
}
