.card {
  height: 240px;
  /* border-radius: 5px; */
  background-color: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
  border-radius: unset !important;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  padding: 10px;
  box-sizing: border-box;
  z-index: 2;
  /* border-radius: 0 0 5px 5px; */
  cursor: pointer;
}

.cardTitle {
  font-weight: 600;
  font-size: 18px;
}

.cardDescription {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

@media screen and (min-width: 320px) and (max-width: 449px) {
  .card {
    width: 320px;
  }
  .cardLink {
    width: fit-content;
  }
}
