.review-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap; /* zorgt ervoor dat het op mobiel netjes afbreekt */
  margin-top: 1rem;
}

.review-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #f5f5f5;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.review-links a:hover {
  background-color: #e0e0e0;
}

.review-links i {
  font-size: 20px;
  color: #0079b6;
  transition: color 0.3s ease;
}

.review-links a:hover i {
  color: #005a84;
}

@media screen and (max-width: 480px) {
  .review-links {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .review-links a {
    width: 36px;
    height: 36px;
  }

  .review-links i {
    font-size: 18px;
  }
}
