.vr-faq {
  padding: 80px 0 0;
}

.vr-faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}

.vr-faq__left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 0;
}

.vr-faq__title {
  margin: 0;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #fff;
}

.vr-faq__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-gray);
}

.vr-faq__img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: left bottom;
}

.vr-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vr-faq__item {
  background: var(--color-panel);
  border: 2px solid var(--color-green-dim);
  border-radius: 14px;
  padding: 16px 20px;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.vr-faq__item[open] {
  border-color: var(--color-green);
}

.vr-faq__question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.vr-faq__question::-webkit-details-marker {
  display: none;
}

.vr-faq__icon {
  color: var(--color-green);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.vr-faq__item[open] .vr-faq__icon {
  transform: rotate(45deg);
}

.vr-faq__answer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.6;
}

.vr-faq__answer p {
  margin: 0 0 10px;
}

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

@media (max-width: 900px) {
  .vr-faq__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vr-faq__left {
    align-items: center;
    text-align: center;
  }
  .vr-faq__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .vr-faq__title {
    font-size: 28px;
  }
  .vr-faq__media {
    margin-top: 16px;
  }
  .vr-faq__img {
    max-height: 300px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .vr-faq__title {
    font-size: 24px;
  }
  .vr-faq__img {
    max-height: 240px;
  }
}
