.partners-page {
  max-width: 1200px;
}

.partners-intro {
  max-width: 680px;
  margin: 18px auto 80px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(245,234,210,0.78);
}

.partners-section {
  margin-bottom: 90px;
  position: relative;
}

.partners-section::after {
  content: "";
  display: block;
  width: 160px;
  height: 2px;
  margin: 70px auto 0;
  background: rgba(169,113,66,0.45);
  border-radius: 999px;
}

.partners-section:last-child::after {
  display: none;
}

.partners-heading {
  text-align: center;
  margin-bottom: 34px;
}

.partners-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #a97142;
  letter-spacing: 0.03em;
}

.partners-heading h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.7rem;
  margin: 0;
  color: #f5ead2;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.partner-logo-card {
    width: 220px;
  min-height: 130px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}






.partner-logo-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
  border-radius: 8px;
}

.donation-section {
  max-width: 680px;
  margin: 20px auto 90px;
  padding: 34px 28px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

.donation-section h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.7rem;
  margin: 0 0 14px;
  color: #f5ead2;
}

.donation-section p {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: rgba(245,234,210,0.78);
}

.donation-section .iban {
  margin-top: 18px;
  font-weight: 700;
  color: #a97142;
  letter-spacing: 0.03em;
}

.donation-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}

.donation-qr {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: white;
  padding: 8px;
}

.donation-details {
  text-align: left;
}

.donation-address {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245,234,210,0.75);
}

@media (min-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(auto-fit, 220px);
    justify-content: center;
  }

  .partner-logo-card {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .donation-content {
    flex-direction: column;
    gap: 20px;
  }

  .donation-details {
    text-align: center;
  }

  .donation-qr {
    width: 170px;
    height: 170px;
  }
}