/**********************/
/* RECOMMENDATIONS */
/**********************/

.recommendations {
  margin-bottom: 16rem;
}

.herbal-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.herbal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
  transition: all 0.5s ease-in;
}

.herbal-img img:hover {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.herbal-gradient {
  height: 100%;
  width: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 25%;
  position: absolute;
  z-index: 1;
}

.herbal-text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  letter-spacing: 0.4rem;
  line-height: 1.5;
}
