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

.donation-inr-section {
  width: 100%;
  padding: 40px 20px;
  background: #fffdf9;
  font-family: inherit;
  text-align: center;
  color: #082b17;
}

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

.donation-heading span {
  width: 160px;
  height: 1px;
  background: #f4b99f;
}

.donation-heading h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #082b17;
}

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

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

.donation-card {
  background: #fffdf8;
  border: 1px solid #f2cdbd;
  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-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(222, 75, 17, 0.14);
  border-color: #ee8e62;
}

.donation-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f36b2c, #de3b00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

.donation-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-card:hover .donation-icon {
  background: #082b17;
  transform: scale(1.08) rotate(4deg);
}

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

.donation-card h3 {
  margin: 0 0 22px;
  font-size: 38px;
  font-weight: 800;
  color: #062c16;
  transition: color 0.35s ease;
}

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

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

.donation-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f15a14, #cf2f00);
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 4px;
  min-width: 165px;
  transition: all 0.35s ease;
}

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

.donation-btn:hover {
  background: #082b17;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(8, 43, 23, 0.22);
}

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

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

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

.donation-features b {
  color: #0b301a;
}

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

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

@media (max-width: 767px) {
  .donation-inr-section {
    padding: 34px 15px;
  }

  .donation-heading {
    gap: 12px;
  }

  .donation-heading span {
    width: 55px;
  }

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

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

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

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

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

  .donation-card p {
    min-height: auto;
  }

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

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

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

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

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

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