d.sg-asHP-grants-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(110,176,68,0.18), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(201,226,101,0.2), transparent 30%),
    #f7f8f4;
}

.sg-asHP-grants-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(61,61,61,0.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(61,61,61,0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.sg-asHP-grants-section .container {
  position: relative;
  z-index: 2;
}

.sg-asHP-grants-eyebrow {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(110,176,68,0.14);
  color: #4f8f31;
  font-weight: 700;
  margin-bottom: 18px;
}

.sg-asHP-grants-title {
  font-size: clamp(2rem, 4vw, 4rem); 
font-family: 'Mona Sans', sans-serif !important;  line-height: 1.05;
  color: #263021;
  font-weight: 800;
  margin-bottom: 20px;
}

.sg-asHP-grants-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #5c6258;
  margin-bottom: 28px;
}

.sg-asHP-grants-highlight {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 18px 45px rgba(38,48,33,0.09);
  border: 1px solid rgba(110,176,68,0.18);
}

.sg-asHP-grants-highlight strong {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: #2664c6;
  font-weight: 900;
}

.sg-asHP-grants-highlight span {
  display: block;
  margin-top: 8px;
  color: #3d3d3d;
  font-weight: 600;
}



.sg-asHP-grants-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(110,176,68,0.16);
  box-shadow: 0 18px 45px rgba(38,48,33,0.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.sg-asHP-grants-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(38,48,33,0.14);
  border-color: rgba(110,176,68,0.42);
}

.sg-asHP-grants-card-featured {
background-color:#2664c6;


}


.sg-asHP-grants-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(110,176,68,0.13);
  color: #6eb044;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.sg-asHP-grants-card h3 {
  color: #263021;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.sg-asHP-grants-card p {
  color: #5c6258;
  line-height: 1.65;
  margin-bottom: 20px;
}

.sg-asHP-grants-tag {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(201,226,101,0.28);
  color: #4f732c;
  font-size: .85rem;
  font-weight: 800;
}

.sg-asHP-grants-strip {
  margin-top: 48px;
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: #2664c6;
}


.sg-asHP-grants-strip strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.sg-asHP-grants-strip span {
  color: #000;
}

.sg-asHP-grants-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s ease, transform .75s ease;
}

.sg-asHP-grants-reveal.sg-asHP-grants-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .sg-asHP-grants-section {
    padding: 65px 0;
  }

  .sg-asHP-grants-card {
    padding: 24px;
  }

  .sg-asHP-grants-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .sg-asHP-grants-strip a {
    width: 100%;
  }
}



















.title-linear {
	background: linear-gradient(
    120deg, 
    #000000 0%, 
    #000000 45%, 
    #89d957 49%, 
    #c9e265 51%, 
    #000000 55%, 
    #000000 100%
  );
  background-size: 300% auto;
  
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Increased total loop time to 8 seconds for a much calmer pace */
  animation: ultraSlowShimmer 8s ease-in-out infinite;
}

@keyframes ultraSlowShimmer {
  /* 0% to 50%: The shimmer now takes 4 whole seconds to glide across */
  0% {
    background-position: 300% center;
  }
  50% {
    background-position: 0% center;
  }
  /* 50% to 100%: Holds on solid black for the remaining 4 seconds */
  100% {
    background-position: 0% center;
  }
}
