/*!
 * Copyright © 2026 OHTCC (ohtccwa.org)
 * All rights reserved.
 */

.donation-options-section {
  background: #faf7f2;
  border-top: 1px solid #eaded0;
  border-bottom: 1px solid #eaded0;
}

.donation-options-intro {
  max-width: 760px;
  margin: 0 auto 22px;
  color: #4e2c00;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
}

.donation-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.donation-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 24px 20px;
  border: 1px solid #edc16b;
  border-top: 4px solid #cc4e00;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.donation-option-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff3d0;
  color: #8b0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.donation-option h3 {
  margin: 0 0 10px;
  color: #7a0c10;
  font-size: 1.25rem;
  font-weight: 700;
}

.donation-option p {
  margin: 0 auto 10px;
  color: #4e2c00;
  font-size: 0.96rem;
  line-height: 1.5;
}

.donation-option img {
  display: block;
  width: min(180px, 100%);
  height: auto;
  margin: 0 auto 12px;
  border: 1px solid #f0d69b;
  border-radius: 8px;
  background: #fff;
}

.donation-option-detail {
  margin-bottom: 4px !important;
}

.donation-zelle-link {
  display: inline-block;
  margin-bottom: 12px;
  color: #8b0000;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
}

.donation-zelle-link:hover,
.donation-zelle-link:focus {
  color: #b04600;
  text-decoration: underline;
}

.donation-option-featured {
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
}

.donation-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  margin-top: 10px;
  padding: 10px 22px;
  border: 1px solid #f57c00;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff9800 0%, #ffac0a 45%, #ffeb3b 100%);
  color: #7a0c10;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

.donation-primary-link:hover,
.donation-primary-link:focus {
  color: #5c090d;
  background: linear-gradient(135deg, #ffb74d 0%, #ffd54f 50%, #fff176 100%);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .donation-options-grid {
    grid-template-columns: 1fr;
  }

  .donation-option {
    width: 100%;
    min-height: 310px;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .donation-options-section {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .donation-options-intro {
    font-size: 0.95rem;
  }

  .donation-option {
    min-height: 300px;
    padding: 20px 16px;
  }
}
