.vb-faq {
  padding: 96px 20px;
  background: #fff;
}
@media (max-width: 768px) {
  .vb-faq {
    padding: 32px 20px;
  }
}

.vb-faq__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.vb-faq__title {
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  color: #4b3f3b;
}

.vb-faq__title span {
  color: #cdaea2;
}

.vb-faq__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 100px;
  border: 1px solid #4b3f3b;
  color: #4b3f3b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  width: fit-content;
  transition: box-shadow 0.2s ease;
}
.vb-faq__btn:hover {
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.1);
}

/* Accordion */
.vb-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vb-faq__item {
  background: #f6efe9;
  border-radius: 14px;
  overflow: hidden;
}

.vb-faq__head {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}

.vb-faq__q {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: #4b3f3b;
}

.vb-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-faq__svg {
  transition: transform 180ms ease;
  transform: rotate(180deg); /* default = uždarytas (↓) */
  color: #4c423f;
}
.vb-faq__item.is-open .vb-faq__svg {
  transform: rotate(0deg);
}

.vb-faq__body {
  padding: 0 18px 16px;
}

.vb-faq__a {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 160%;
  color: #4b3f3b;
}

.vb-faq__a p {
  margin: 0 0 10px;
}

.vb-faq__a p:last-child {
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 1024px) {
  .vb-faq__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .vb-faq__left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .vb-faq__title {
    font-size: 32px;
    margin: 0;
  }
}
