.how-recom__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 30px;
}

.how-recom-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px;
  background: #f8f8f8;
}

.how-recom-item__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #282828;
}

.how-recom-item__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #000;
}

@media (max-width: 1200px) {
  .how-recom__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 861px) {
  .how-recom__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .how-recom__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}