/* ── Donate Section ── */
.donateSection {
  --donate-blue: #377ee4;
  --donate-navy: #17407d;
  --donate-white: #ffffff;
  --donate-cream: #f6efdf;

  width: 100%;
  background-color: var(--donate-blue);
  overflow: hidden;
}

/* ── Inner container ── */
.donateSection__inner {
  min-height: 379px;
  padding: 34px 24px 53px;
  display: flex;
  flex-direction: column;
}

/* ── Title ── */
.donateSection__title {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(84px, 12.43vw, 165px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3.58px;
  text-transform: uppercase;
  color: var(--donate-navy);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.donateSection__title span {
  color: var(--donate-white);
}

/* ── Divider ── */
.donateSection__divider {
  width: 100%;
  height: 1px;
  margin-top: 25px;
  background-color: rgba(23, 64, 125, 0.29);
}

/* ── Content row (description + button) ── */
.donateSection__contentRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
}

/* ── Description ── */
.donateSection__description {
  margin: 0;
  max-width: 564px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--donate-white);
}

/* ── Button ── */
.donateSection__button {
  flex: 0 0 330px;
  width: 330px;
  height: 50px;
  padding: 0 30px;
  background-color: var(--donate-white);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-decoration: none;
  cursor: pointer;
  color: #17407d;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 15.6px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.188px;
  text-transform: uppercase;
}


/* ══════════════════════════════════════════
   Mobile  (≤ 768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .donateSection__inner {
    min-height: 386px;
    padding: 28px 14px 17px;
  }

  .donateSection__title {
    font-size: 83.585px;
    letter-spacing: -1.672px;
    line-height: 0.9;
  }

  .donateSection__contentRow {
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
  }

  .donateSection__description {
    max-width: 100%;
    font-size: 16px;
    letter-spacing: -0.2px;
    line-height: 1.2;
    color: var(--donate-cream);
  }

  .donateSection__button {
    flex: none;
    width: 100%;
    height: 50px;
  }

}
