/* ========================================
   OTHER WAYS TO DONATE SECTION
   ======================================== */
.other-donations {
  padding: 48px 0;
  background-color: #ffffff;
  /* Responsive design */
}
.other-donations__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
  color: #111827;
}
.other-donations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .other-donations {
    padding: 32px 0;
  }
  .other-donations__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .other-donations__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Individual donation method cards */
.donation-method {
  background: white;
  border-radius: 8px;
  padding: 32px 24px;
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  /* Icons */
  /* Content */
  /* Links */
  /* Responsive design */
}
.donation-method__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  /* Icon color variants */
}
.donation-method__icon svg {
  width: 24px;
  height: 24px;
}
.donation-method__icon--phone {
  background-color: #10b981;
  color: white;
}
.donation-method__icon--card {
  background-color: #8b5cf6;
  color: white;
}
.donation-method__icon--mail {
  background-color: #ec4899;
  color: white;
}
.donation-method__icon--bank {
  background-color: #8b5cf6;
  color: white;
}
.donation-method__content {
  flex: 1;
}
.donation-method__heading {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.donation-method__text {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 12px;
  font-size: 14px;
}
.donation-method__text:last-child {
  margin-bottom: 0;
}
.donation-method__text strong {
  color: #111827;
  font-weight: 600;
}
.donation-method__link {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.donation-method__link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .donation-method {
    padding: 24px 20px;
    gap: 16px;
  }
  .donation-method__icon {
    width: 44px;
    height: 44px;
  }
  .donation-method__icon svg {
    width: 20px;
    height: 20px;
  }
  .donation-method__heading {
    font-size: 18px;
  }
  .donation-method__text {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .donation-method {
    padding: 20px 16px;
  }
}

/* Bank details styling */
.bank-details {
  background: #f9fafb;
  padding: 16px;
  border-radius: 6px;
  margin: 16px 0;
  border: 1px solid #e5e7eb;
}
.bank-details p {
  margin: 6px 0;
  color: #374151;
  font-size: 13px;
  line-height: 1.4;
}
.bank-details p:first-child {
  margin-top: 0;
}
.bank-details p:last-child {
  margin-bottom: 0;
}
.bank-details p strong {
  font-weight: 600;
  color: #111827;
}

/* Gutenberg Block specific styling */
.block-other-ways-donate {
  padding: 48px 0;
  background-color: #ffffff;
  /* Responsive design */
}
.block-other-ways-donate .other-ways-donate__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
  color: #111827;
}
.block-other-ways-donate .other-ways-donate__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .block-other-ways-donate {
    padding: 32px 0;
  }
  .block-other-ways-donate .other-ways-donate__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .block-other-ways-donate .other-ways-donate__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Editor specific styles */
.wp-block[data-type="acf/other-ways-donate"] .block-other-ways-donate {
  margin: 0;
}
