﻿/* === FAQ === */


.faq-sxo {
  padding: 20px 20px 20px;
  font-family: inherit;
}


.faq-sxo__container {
  max-width: 980px;
  margin: 0 auto;
  font-family: inherit;
}


.faq-sxo__title {
  margin: 0 0 34px;
  text-align: center;
  font-family: inherit;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 700;
  color: #20325a;
  letter-spacing: -0.02em;
}


.faq-sxo__list {
  border-top: 1px solid #d9deea;
}


.faq-sxo__item {
  border-bottom: 1px solid #d9deea;
}


.faq-sxo__question {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 22px 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
  color: #20325a;
}


.faq-sxo__question::-webkit-details-marker {
  display: none;
}


.faq-sxo__question::marker {
  content: "";
}


.faq-sxo__icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8edf7;
  margin-top: 6px;
}


.faq-sxo__icon::before,
.faq-sxo__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #20325a;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}


.faq-sxo__icon::before {
  width: 10px;
  height: 2px;
}


.faq-sxo__icon::after {
  width: 2px;
  height: 10px;
}


.faq-sxo__item[open] .faq-sxo__question {
  color: #b71a30;
  padding-bottom: 12px;
}


.faq-sxo__item[open] .faq-sxo__icon {
  background: #b71a30;
}


.faq-sxo__item[open] .faq-sxo__icon::before {
  background: #ffffff;
}


.faq-sxo__item[open] .faq-sxo__icon::after {
  display: none;
}


.faq-sxo__answer {
  padding: 0 0 24px 50px;
}


.faq-sxo__answer p {
  margin: 0;
  max-width: 900px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #2b3550;
}


.faq-sxo__answer strong {
  font-weight: 700;
}


.faq-sxo__question:hover {
  opacity: 0.92;
}


@media (max-width: 767px) {
  .faq-sxo {
    padding: 28px 16px 10px;
  }


  .faq-sxo__title {
    margin-bottom: 24px;
    font-size: 30px;
  }


  .faq-sxo__question {
    gap: 16px;
    padding: 18px 0;
    font-size: 16px;
    line-height: 1.65;
  }


  .faq-sxo__answer {
    padding: 0 0 20px 38px;
  }


  .faq-sxo__answer p {
    font-size: 16px;
    line-height: 1.65;
  }


  .faq-sxo__icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    margin-top: 4px;
  }
}