#ventroFaqPage {
  display: none;
}

html.faq-view main > :not(#ventroFaqPage) {
  display: none !important;
}

html.faq-view #ventroFaqPage {
  display: block;
}

.ventro-faq-page {
  padding: clamp(48px, 6vw, 92px) 0 clamp(90px, 9vw, 144px);
  color: #1e3447;
  background:
    radial-gradient(circle at 86% 8%, rgba(113, 163, 207, 0.14), transparent 30rem),
    #f8f7f3;
}

.ventro-faq-wrap {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.ventro-faq-hero {
  padding: clamp(48px, 6vw, 82px);
  border: 1px solid #d7dee2;
  border-radius: 32px;
  background: rgba(253, 252, 249, 0.88);
  box-shadow: 0 24px 70px rgba(31, 64, 96, 0.08);
}

.ventro-faq-kicker {
  margin: 0 0 22px;
  color: #486782;
  font: 800 12px/1.2 Arial, 'Microsoft YaHei', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ventro-faq-hero h1 {
  max-width: none;
  margin: 0;
  color: #151d24;
  font: 500 clamp(16px, 4vw, 64px)/1.05 Georgia, 'Times New Roman', 'Songti SC', serif;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.ventro-faq-intro {
  max-width: 930px;
  margin: 28px 0 0;
  color: #587087;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.ventro-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.ventro-faq-item {
  overflow: hidden;
  border: 1px solid #d7dee2;
  border-radius: 22px;
  background: rgba(253, 252, 249, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ventro-faq-item[open] {
  border-color: #bdcbd5;
  box-shadow: 0 16px 40px rgba(31, 64, 96, 0.06);
}

.ventro-faq-item summary {
  position: relative;
  padding: 25px 64px 25px 28px;
  color: #173f67;
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.ventro-faq-item summary::-webkit-details-marker {
  display: none;
}

.ventro-faq-item summary::before {
  content: '';
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 12px 2px 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.ventro-faq-item:not([open]) summary::before {
  transform: rotate(-45deg);
}

.ventro-faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 28px;
  color: #7c93a6;
  font: 400 24px/1 Arial, sans-serif;
  transform: translateY(-50%);
}

.ventro-faq-item[open] summary::after {
  content: '−';
}

.ventro-faq-answer {
  padding: 0 64px 27px 49px;
  color: #5a7084;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
}

.ventro-faq-answer p {
  margin: 0;
}

.ventro-faq-answer strong {
  color: #244f7a;
  font-weight: 800;
}

.ventro-faq-item summary:focus-visible {
  outline: 2px solid #72bdf1;
  outline-offset: -5px;
}

@media (hover: hover) {
  .ventro-faq-item:hover {
    border-color: #9fb2c1;
  }
}

@media (max-width: 620px) {
  .ventro-faq-wrap {
    width: min(100% - 28px, 1240px);
  }

  .ventro-faq-hero {
    padding: 38px 24px 42px;
    border-radius: 24px;
  }

  .ventro-faq-item {
    border-radius: 18px;
  }

  .ventro-faq-item summary {
    padding: 22px 48px 22px 20px;
  }

  .ventro-faq-item summary::after {
    right: 20px;
  }

  .ventro-faq-answer {
    padding: 0 22px 24px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ventro-faq-item,
  .ventro-faq-item summary::before {
    transition: none;
  }
}
