

/* Start:/local/components/project/faq/templates/.default/style.css?17645117542745*/
/* Контейнер и сетка */
.buh__faq { margin: 15px auto; max-width: 1180px;}
.buh__faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .buh__faq-grid {
    display: block; /* Сбрасываем flex */
    column-count: 2;
    column-gap: 16px;
  }
}

@media (max-width: 767px) {
  .buh__faq { 
    padding: 0 15px;
    margin: 0 auto;
  }

  .buh__faq-item__icon {
    width: 40px;
    height: 40px;
  }

  .buh__faq-item__question {
    font-size: 16px;
    line-height: 22px;
  }
}

.buh__faq-grid > .buh__faq-item:last-child {
    margin-bottom: 0;
}

/* Элемент FAQ */
.buh__faq-item {
  background: #F4F6FB;
  border-radius: 10px;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 17px 20px;
}

/* Заголовок (кликабельный) */
.buh__faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.buh__faq-item__header:focus { outline: none; }
.buh__faq-item__header:focus-visible {
  outline: 2px solid #1962FF;
  outline-offset: 2px;
  border-radius: 8px;
}

/* Текст вопроса */
.buh__faq-item__question {
  color: #323439;
  text-align: left;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
}

/* Иконка + в круге */
.buh__faq-item__icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.buh__faq-item__plus {
  position: relative;
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.buh__faq-item__plus::before,
.buh__faq-item__plus::after {
  content: "";
  position: absolute;
  background: #1962FF;
  border-radius: 2px;
}
.buh__faq-item__plus::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.buh__faq-item__plus::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.buh__faq-item.buh__is-open .buh__faq-item__plus {
  transform: rotate(45deg);
}

/* Контент с ответом (анимация высоты) */
.buh__faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.buh__faq-item__answer {
  padding: 20px 0 0 0;
  color: #7C859C;
  font-size: 18px;
  line-height: 24px;
}

/* Сброс маргинов для HTML внутри ответа */
.buh__faq-item__answer p { margin: 0 0 8px; }
.buh__faq-item__answer ul { margin: 0 0 8px 18px; }
/* End */
/* /local/components/project/faq/templates/.default/style.css?17645117542745 */
