.kf-faq {
  padding: 2.5rem 0 3rem;
}

.kf-faq__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  text-align: center;
}

.kf-faq__list {
  margin: 0 auto;
}

.kf-faq__item {
  border-bottom: 1px solid #e4e4e4;
}

.kf-faq__item:first-child {
  border-top: 1px solid #e4e4e4;
}

.kf-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1.1rem 0.25rem 1.1rem 0;
  border: 0;
  background: transparent;
  color: #1e2228;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.kf-faq__question:hover,
.kf-faq__question:focus-visible {
  color: #ff7a1a;
  outline: none;
}

.kf-faq__question-text {
  flex: 1 1 auto;
}

.kf-faq__icon {
  position: relative;
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
}

.kf-faq__icon::before,
.kf-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.kf-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.kf-faq__question:not(.collapsed) .kf-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.kf-faq__answer-body {
  padding: 0 0.25rem 1.25rem 0;
  color: #444;
  font-size: 1rem;
  line-height: 1.55;
}

.kf-faq__answer-body p:last-child {
  margin-bottom: 0;
}

.kf-faq__answer-body a {
  color: #ff7a1a;
}

@media (max-width: 575.98px) {
  .kf-faq {
    padding: 2rem 0 2.5rem;
  }

  .kf-faq__question {
    font-size: 1rem;
    padding: 0.95rem 0;
  }
}
