.vk-faq {
  max-width: 760px;
  margin: 0 auto;
}
.vk-faq__item {
  border: 1px solid var(--clr-border);
  border-radius: 9px;
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  transition: box-shadow 0.25s;
}
.vk-faq__item.active {
  box-shadow: 0 4px 20px rgba(10, 48, 147, 0.18);
}
.vk-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  gap: 12px;
  user-select: none;
}
.vk-faq__q::after {
  content: "+";
  font-size: 22px;
  color: #5b8df5;
  flex-shrink: 0;
  transition: transform 0.28s;
}
.vk-faq__item.active .vk-faq__q::after {
  transform: rotate(45deg);
}
.vk-faq__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.28s;
  padding: 0 20px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.vk-faq__item.active .vk-faq__a {
  max-height: 400px;
  padding: 0 20px 16px;
}
