.spenden-hero {
  height: 85vh;
  max-height: 750px;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.spenden-hero .hero-content {
  max-width: 1280px;
  padding: 0 64px 100px;
}

.spenden-hero-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 100%) !important;
}

.spenden-hero .btn {
  align-self: flex-start;
}

.bank-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 700px;
}

.bank-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bank-detail-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.7;
  color: var(--color-white);
}

.bank-detail-value {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-white);
}

.bank-detail-full {
  grid-column: 1 / -1;
}

.monthly-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 28px;
  max-width: 700px;
  width: 100%;
}

.monthly-cta-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.monthly-cta-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5em;
  color: var(--color-white);
}

.monthly-cta-text strong {
  display: block;
  margin-bottom: 2px;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow:
    0 0.8px 2.4px -0.6px rgba(0,0,0,0.05),
    0 2.4px 7.2px -1.25px rgba(0,0,0,0.05),
    0 6.4px 19px -1.9px rgba(0,0,0,0.05),
    0 20px 60px -2.5px rgba(0,0,0,0.05);
}

.support-card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2em;
  color: var(--color-primary);
}

.support-card p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6em;
  color: var(--color-gray);
}

.support-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.vorteile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
}

.vorteile-list li {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7em;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.supporter-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.supporter-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.supporter-logo-wrap {
  flex: none;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supporter-logo {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.supporter-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6em;
  color: var(--color-gray);
}

.supporter-text strong {
  color: var(--color-text);
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .faq-item {
  cursor: pointer;
}

.faq-section .faq-item .faq-question {
  pointer-events: none;
}

@media (max-width: 1199px) {
  .spenden-hero .hero-content {
    padding: 0 32px 80px;
  }

  .support-card {
    padding: 32px 24px;
  }

  .support-card-title {
    font-size: 24px;
  }

  .supporter-logo-wrap {
    width: 160px;
  }
}

@media (max-width: 809px) {
  .spenden-hero {
    height: 700px;
    max-height: 700px;
    min-height: unset;
  }

  .spenden-hero .hero-content {
    padding: 0 16px 48px;
  }

  .bank-details {
    grid-template-columns: 1fr;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .supporter-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .monthly-cta {
    flex-direction: column;
    text-align: center;
  }
}
