.products{
  width: 100%;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background-color: #fff;
}

.product{
  border: 1px solid #999999b2;
  border-radius: 5px;
  box-shadow: 0px 1px 7px 0px #999999b2;
  cursor: pointer;
  grid-column: 1fr;
  height: fit-content;
}

.product:hover{
  box-shadow: 0px 3px 8px 0px #5a5a5ac4;
}

.product .image{
  border-radius: 5px 5px 0px 0px;
  width: 100%;
  height: 50vh;
}

.product h3{
  margin-right: 8px;
  margin-top: 5px;
  color: black;
}

.product p{
  margin: 5px;
  padding-right: 15px !important;
  text-align: justify;
  color: #444;
  border-bottom: 1px solid #444;
}

.product a{
  text-align: center;
  width: 100%;
  padding: 10px;
}

@media screen and (max-width: 992px) {
  .products{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .products{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .products{
    grid-template-columns: 1fr;
  }
}
