/* ── Hero (VH-spezifisch) ── */

.vhs-hero {
  background: var(--color-bg-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vhs-hero .section-header {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Was ist das System (VH-spezifisch) ── */

.vhs-was-ist {
  background: var(--color-bg-light);
  padding: 100px 0;
}

.vhs-was-ist .container {
  width: 1000px;
}

.vhs-was-ist__card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-card);
  padding: 30px 150px;
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
  justify-content: center;
}

.vhs-was-ist .section-header p{
  font-size: var(--size-p-large);
}

.vhs-was-ist__text h3 {
  font-size: var(--size-h4);
  margin-bottom: 20px;
}

.vhs-was-ist__text .p-large {
  margin-bottom: 15px;
}

.vhs-was-ist__text p {
  color: var(--color-grey-text);
}

.vhs-was-ist__img {
  width: 250px;
  border-radius: 10px;
}

.vhs-was-ist__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.vhs-was-ist__feature {
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-card);
  padding: 35px;
  position: relative;
  isolation: isolate;
}

.vhs-was-ist__feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-light-gold);
  opacity: 0.15;
  border-radius: var(--radius-card);
  z-index: -1;
}

.vhs-was-ist__feature h4 {
  font-size: var(--size-h6);
  margin-bottom: 10px;
}

.vhs-was-ist__feature p {
  color: var(--color-grey-text);
}

.vhs-ergebnisse .section-header {
  margin-bottom: 40px;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .vhs-was-ist .container {
    width: 95%;
  }
  .vhs-was-ist__card {
    padding: 30px 50px;
    gap: 30px;
  }
  .vhs-was-ist__img {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .vhs-hero {
    padding: 80px 0 60px;
  }
  .vhs-was-ist {
    padding: 60px 0;
  }
  .vhs-was-ist .container {
    width: 90%;
  }
  .vhs-was-ist__card {
    padding: 24px;
    flex-direction: column;
    gap: 24px;
  }
  .vhs-was-ist__img {
    width: 100%;
    max-width: 300px;
  }
  .vhs-was-ist__features {
    grid-template-columns: 1fr;
  }
  .vhs-was-ist__feature {
    padding: 24px;
  }
}
