.s-linked-collections ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .s-linked-collections ul {
    gap: 0.75rem;
  }
}
.s-linked-collections ul li a {
  display: block;
  padding: 0.5rem 1.5rem;
  background-color: #343434;
  color: #FFFFFF;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.25s ease-in-out;
}
.s-linked-collections ul li a:hover, .s-linked-collections ul li a:focus {
  background-color: #000000;
}