.donation-usd-section,
.donation-usd-section * {
  box-sizing: border-box;
}

.donation-usd-section {
  width: 100%;
  padding: 40px 20px;
  background: #fffdf9;
  border-radius: 14px;
  font-family: inherit;
  text-align: center;
  color: #031A3B;
}

.donation-usd-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 14px;
}

.donation-usd-heading span {
  width: 220px;
  height: 2px;
  background: #f28b71;
}

.donation-usd-heading h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #031A3B;
}

.donation-usd-subtitle {
  max-width: 850px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.7;
  color: #111827;
}

.donation-usd-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.donation-usd-card {
  background: #fffefb;
  border: 1px solid #ead9ce;
  border-radius: 8px;
  padding: 24px 22px 22px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.35s ease;
  overflow: hidden;
}

.donation-usd-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(3, 26, 59, 0.14);
  border-color: #031A3B;
}

.donation-usd-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #031A3B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

.donation-usd-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.35s ease;
}

.donation-usd-card:hover .donation-usd-icon {
  background: #e94b12;
  transform: scale(1.08) rotate(4deg);
}

.donation-usd-card:hover .donation-usd-icon svg {
  stroke: #ffffff;
  transform: scale(1.06);
}

.donation-usd-card h3 {
  margin: 0 0 22px;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: #031A3B;
  transition: color 0.35s ease;
}

.donation-usd-card:hover h3 {
  color: #e94b12;
}

.donation-usd-card p {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  color: #111827;
  min-height: 42px;
}

.donation-usd-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 165px;
  padding: 13px 24px;
  background: #031A3B;
  color: #ffffff !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.donation-usd-btn .currency-symbol {
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.donation-usd-btn:hover {
  background: #e94b12;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(233, 75, 18, 0.22);
}

.donation-usd-features {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  color: #031A3B;
}

.donation-usd-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.donation-usd-features svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #e94b12;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.donation-usd-features b {
  color: #031A3B;
}

@media (max-width: 1100px) {
  .donation-usd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .donation-usd-heading span {
    width: 130px;
  }
}

@media (max-width: 767px) {
  .donation-usd-section {
    padding: 35px 15px;
    border-radius: 10px;
  }

  .donation-usd-heading {
    gap: 12px;
  }

  .donation-usd-heading span {
    width: 48px;
  }

  .donation-usd-heading h2 {
    font-size: 24px;
  }

  .donation-usd-subtitle {
    font-size: 14px;
  }

  .donation-usd-subtitle br {
    display: none;
  }

  .donation-usd-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .donation-usd-card {
    min-height: auto;
    padding: 30px 18px;
  }

  .donation-usd-card h3 {
    font-size: 34px;
  }

  .donation-usd-card p {
    font-size: 15px;
    min-height: auto;
  }

  .donation-usd-btn {
    min-width: 170px;
    font-size: 14px;
  }

  .donation-usd-features {
    flex-direction: column;
    gap: 11px;
    font-size: 14px;
  }

  .donation-usd-features b {
    display: none;
  }
}

/* Shortcode layout overrides moved here so the browser can cache them. */
.donation-usd-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
}

@media (max-width: 1024px) {
  .donation-usd-grid .donation-usd-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 13px);
    justify-self: center;
  }
}

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

  .donation-usd-grid .donation-usd-card:last-child {
    grid-column: auto;
    width: 100%;
  }
}
