.top-products-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 0 15px 40px;
  padding-left: 0;
  list-style: none;
}
.top-products-info-item a {
  border: solid 1px #b2b2b2;
  color: initial;
  font-size: 116%;
  font-weight: 700;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  height: stretch;
  padding: 10px;
  transition: all 0.2s;
}
.top-products-info-item a:hover {
  color: #005bac;
  text-decoration: none;
  opacity: 0.6;
}
.top-products-info-item a img {
  width: 150px;
}
.top-products .link-ul {
  margin: 0 15px;
}
.top-products .link-ul a {
  color: #333;
  position: relative;
  border: 1px solid #808080;
  display: block;
  text-align: center;
  padding: 14px;
  transition: all 0.2s;
}
.top-products .link-ul a:hover {
  background-color: #efefef;
  text-decoration: none;
}
.top-products .link-ul a span {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  width: 10px;
  height: 10px;
}
.top-products .link-ul a span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #808080;
  border-right: 1px solid #808080;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media print, screen and (min-width: 669px) {
  .top-products-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .top-products-info-item a {
    flex-direction: row;
    justify-content: space-between;
    padding: 25px 15px 25px 25px;
  }
  .top-products .link-ul {
    margin-top: 50px;
  }
  .top-products .link-ul a {
    width: 300px;
    margin: 0 auto;
  }
}
