.resultsSection {
  width: min(100% - 2rem, 62.5rem);
  margin: clamp(1.5rem, 5vw, 3.125rem) auto;
}

h2 {
  padding: 0 0 20px 0;
}

.scholarship-card {
  position: relative;
  background: #fff;
  padding: clamp(1rem, 4vw, 1.5625rem);
  margin-bottom: 1.5625rem;
  border-radius: 0.75rem;
  box-shadow: -0.75rem 0.75rem 0.35rem rgba(0, 0, 0, 0.1);
  overflow-wrap: anywhere;
}


h3 {
  margin-bottom: 5px;
}

.heart-icon {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  width: 1.625rem;
  height: 1.625rem;
  cursor: pointer;
  fill: #888;
  transition: 0.2s;
}

.heart-icon.saved {
  fill: #e63946;
  animation: pop 0.25s ease;
}


.heart-icon:hover {
  transform: scale(1.15);
}



@keyframes pop {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.3)
  }

  100% {
    transform: scale(1)
  }
}

.tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 0.8125rem;
  font-weight: bold;
  color: #fff;
}

.tag.strong {
  background-color: #16a34a;
}

.tag.recommended {
  background-color: #facc15;
  color: #000;
}

.comment {
  font-size: 1.125rem;
  background: none;
  border: none;
  color: #1a73e8;
  cursor: pointer;
  margin-bottom: 5px;
}

p {
  margin-bottom: 5px;
}
