/* ==========================================================================
   THEME-DONATE  â€”  Make college affordable CTA
   ========================================================================== */

.theme-donate {
  padding: var(--section-pad-y) 0;
}

.theme-donate .container {
}

.theme-donate__inner {
  position: relative;
}

.theme-donate__content {
  max-width: 1400px;
  position: relative;
  z-index: 2;
  background: var(--MSSF-New-Site-Darker-Blue, #037ABF);
  color: #fff;
  padding: 89px;
}
.theme-donate__content:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -30px;
  top: 0;
  display: block;
  width: calc(100% - 70px);
  height: calc(100% + 30px);
  background: url(../../../assets/img/donor-lines.svg);
  background-size: cover;
}
.theme-donate__content:after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 99px;
  height: 98px;
  background-color: #f4f3b8;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.theme-donate__title {
  font-family: var(--serif);
  font-size: var(--h1);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}
.theme-donate__title span {
  background-image: url(../../../assets/img/donate-line.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  padding-bottom: 5px;
}

.theme-donate__text {
  font-family: var(--sans);
  line-height: 1.6;
  color: #fff;
  margin: 0 0 28px;
  border-bottom: solid 4px #fff;
  padding-bottom: 40px;
}

.theme-donate__link {
  display: inline-flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  text-decoration: none;
  color: var(--brand);
}

.theme-donate__link-text {
  font-family: var(--sans-condensed);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  

/* MSSF H4 */
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 69px */
  letter-spacing: 3.68px;
  text-transform: uppercase;
}

/* ---- Arrow area ---- */
.theme-cta__card-arrow {
  display: flex;
  justify-content: left;
  width: 100%;
  transition: all .3s ease;
}
.theme-donate__link:hover .theme-cta__card-arrow {
  transform: translateX(6px)
}

.theme-cta__arrow-circle {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #F26836;
}

.theme-cta__arrow-circle svg {
  width: 76px;
  height: auto;
}

.theme-donate__starburst {
  position: absolute;
  z-index: 3;
  top: -80px;
  right: -80px;
}

.theme-donate__starburst img {
  width: 101px;
  height: 102px;
}

/* ---- Background variants ---- */
.theme-donate--highlight {
  background: var(--highlight-light);
  padding: clamp(96px, 14vw, 227px) 0 clamp(80px, 12vw, 201px);
}

.theme-donate--white,
.theme-donate--bg-white,
.theme-donate--white .theme-donate__content:after,
.theme-donate--bg-white .theme-donate__content:after {
  background: #fff;
}

.theme-donate--bg-yellow {
  background: var(--highlight-light);
}

/* ---- Heading + grid (before content) ---- */
.theme-donate__heading {
  font-family: var(--serif);
  font-size: var(--h1);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand);
  margin: 0 0 32px;
}

.theme-donate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 0 140px;
}

.theme-donate__cell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.theme-donate__cell-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.theme-donate__cell-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.theme-donate__cell-heading {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--brand);
  margin: 0;
  line-height: 1.3;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .theme-donate__cell-heading {
    font-size: 25px
  }
}
@media (max-width: 991px) {
  .theme-donate__title {
    font-size: 44px;
  }
  .theme-donate__link-text {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .theme-donate__title {
    font-size: 36px;
  }

  .theme-donate__text {
    font-size: 18px;
  }

  .theme-donate__starburst {
    display: none;
  }

  .theme-donate__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 520px) {
  .theme-donate__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .theme-donate__title {
    font-size: 30px;
  }

  .theme-donate__link-text {
    font-size: 18px;
  }
}
