/* FAQ-Unterseite – extern geladen, damit die Sicherheitsrichtlinie der Website erhalten bleibt. */
.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: end;
  padding-top: clamp(72px, 10vw, 138px);
  padding-bottom: clamp(52px, 7vw, 92px);
}

.faq-hero > *,
.faq-list-heading > *,
.faq-cta > * {
  min-width: 0;
}

.faq-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.6rem, 7.4vw, 7.3rem);
  letter-spacing: -.07em;
  line-height: .89;
}

.faq-hero h1 em {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.faq-hero .intro {
  max-width: 48ch;
  margin-bottom: 0;
  overflow-wrap: break-word;
}

.faq-overview {
  padding: 28px;
  border: 1px solid rgba(72, 70, 65, .55);
  border-radius: 14px;
  background: rgba(213, 207, 197, .72);
  box-shadow: 0 14px 30px rgba(54, 51, 46, .08);
}

.faq-overview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-overview p + p {
  margin-top: 14px;
}

.faq-overview strong {
  color: var(--forest-deep);
}

.faq-list-section {
  padding-top: 0;
  padding-bottom: clamp(74px, 10vw, 132px);
}

.faq-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 34px;
  border-top: 1px solid rgba(72, 70, 65, .55);
}

.faq-list-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.1vw, 4.4rem);
  letter-spacing: -.055em;
  line-height: .95;
}

.faq-list-heading p {
  max-width: 37ch;
  margin: 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(38px, 6vw, 86px);
  margin-top: 44px;
}

.faq-item {
  border-top: 1px solid rgba(72, 70, 65, .55);
}

.faq-item:last-child,
.faq-item:nth-last-child(2):nth-child(odd) {
  border-bottom: 1px solid rgba(72, 70, 65, .55);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 19px 52px 19px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.55vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.25;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 29px;
  height: 29px;
  transform: translateY(-50%);
  border: 1px solid var(--forest);
  border-radius: 50%;
  color: var(--forest-deep);
  content: "+";
  place-items: center;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--forest);
  color: #fff;
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--forest-deep);
  outline-offset: -3px;
}

.faq-answer {
  max-width: 56ch;
  padding: 0 44px 27px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer p + p {
  margin-top: 13px;
}

.faq-answer a {
  color: var(--forest-deep);
  font-weight: 700;
  text-decoration: underline;
}

.faq-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-bottom: clamp(72px, 10vw, 128px);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 16px;
  background: linear-gradient(135deg, #4e5d52 0%, #426d57 100%);
  color: #fff9f1;
  box-shadow: 0 16px 32px rgba(45, 44, 41, .15);
}

.faq-cta .eyebrow {
  margin-bottom: 12px;
  color: #c6ebd2;
}

.faq-cta h2 {
  max-width: 17ch;
  margin: 0;
  color: #fff9f1;
  font-size: clamp(2rem, 3.8vw, 3.9rem);
  letter-spacing: -.055em;
  line-height: .96;
}

.faq-cta h2 em {
  color: #d8e680;
  font-family: Georgia, "Times New Roman", serif;
}

.faq-cta .button {
  flex: 0 0 auto;
  justify-content: space-between;
  min-width: 210px;
  background: #d8e680;
  color: #26352a;
  box-shadow: 3px 4px 0 rgba(18, 39, 28, .42);
}

.faq-cta .button:hover {
  background: #f0f5b8;
}

@media (max-width: 760px) {
  .faq-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 58px;
  }

  .faq-hero h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 14vw, 4.85rem);
    letter-spacing: -.045em;
    line-height: .94;
  }

  .faq-overview {
    padding: 22px;
  }

  .faq-list-heading {
    display: block;
    padding-top: 28px;
  }

  .faq-list-heading p {
    margin-top: 18px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }

  .faq-item:nth-last-child(2):nth-child(odd) {
    border-bottom: 0;
  }

  .faq-item summary {
    min-height: 75px;
    padding-right: 46px;
    font-size: 1.06rem;
  }

  .faq-answer {
    padding-right: 10px;
    padding-bottom: 24px;
  }

  .faq-cta {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 76px;
  }

  .faq-cta .button {
    width: 100%;
  }
}
