/* СЕКЦИЯ: FAQ (t668) */

.faq {
  padding-block: 90px;
  background: var(--c-navy);
}

/* В оригинале две колонки по 380px; вопросы разложены слева-направо */
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
  align-items: start;
  max-width: 780px;
  margin-inline: auto;
}

.faq__item {
  border-radius: 5px;
  background: var(--c-white);
  padding: 22px 24px;
}

.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: #000;
  transition: transform var(--t-mid), background var(--t-fast);
}

.faq__icon::before {
  left: 0;
  top: 10px;
  width: 22px;
  height: 2px;
}

.faq__icon::after {
  left: 10px;
  top: 0;
  width: 2px;
  height: 22px;
}

.faq__item:hover .faq__icon::before,
.faq__item:hover .faq__icon::after {
  background: var(--c-magenta);
}

.faq__item[open] .faq__icon::after {
  transform: rotate(90deg);
}

.faq__a {
  margin-top: 14px;
  font-size: 13px;
  line-height: 15.6px;
  font-weight: 300;
}

.faq__a ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq__a li {
  position: relative;
  padding-left: 14px;
}

.faq__a li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-magenta);
}

/* ── 960: одна колонка (как в Tilda — t-col_6 растягивался) ──── */
@media (max-width: 1199px) {
  .faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 959px) {
  .faq {
    padding-block: 70px;
  }
}

@media (max-width: 639px) {
  .faq {
    padding-block: 56px;
  }

  .faq__item {
    padding: 18px 18px;
  }
}
