/* Players Also Liked */
.players-also-liked {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 1rem 2rem;
}
.players-also-liked__title {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.players-also-liked__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.players-also-liked__link {
  background: linear-gradient(to left, #fff 50%, #fbbf24 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  border: 1px solid #fbbf24;
  border-radius: .5rem;
  color: #1f2937 !important;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
}
.players-also-liked__link:hover {
  background-position: left bottom;
}

@media (min-width: 768px) {
  .players-also-liked {
    padding: 3rem 1.5rem 2rem;
  }
  .players-also-liked__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .players-also-liked__link {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .players-also-liked {
    padding: 3rem 0 2rem;
  }
}