.team-detail-player-page__next-player {
  width: 100%;
  margin: 0 auto;
  max-width: 1900px;
}

.team-detail-player__next-player {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  background: url("../../../../img/team/header/background-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 136px;
  overflow: hidden;
  border-radius: 10px;

  transition: transform 0.5s ease, filter 0.5s ease;
}

.team-detail-player__next-player::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
}

.team-detail-player__next-player:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}

.team-detail-player__next-player::after {
  content: url("data:image/svg+xml,%3csvg width='107' height='15' viewBox='0 0 107 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M106.707 8.20711C107.098 7.81658 107.098 7.18342 106.707 6.79289L100.343 0.428932C99.9526 0.0384078 99.3195 0.0384078 98.9289 0.428932C98.5384 0.819457 98.5384 1.45262 98.9289 1.84315L104.586 7.5L98.9289 13.1569C98.5384 13.5474 98.5384 14.1805 98.9289 14.5711C99.3195 14.9616 99.9526 14.9616 100.343 14.5711L106.707 8.20711ZM106 7.5V6.5H0V7.5V8.5H106V7.5Z' fill='white'/%3e%3c/svg%3e");
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.team-detail-player__next-player:hover::after {
  opacity: 1;
}

.team-detail-player__next-player-content {
  position: absolute;
  text-align: center;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-detail-player__next-player-text {
  font-size: 20px;
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  color: var(--color-secondary);
}

.team-detail-player__next-player-name {
  font-size: 32px;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-white);
}

@media (max-width: 1024px) {
  .team-detail-player__next-player {
    background-position: center;
    border-radius: 20px;
  }

  .team-detail-player__next-player-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .team-detail-player__next-player:hover::after {
    opacity: 0;
  }

  .team-detail-player__next-player-name {
    font-size: 20px;
  }
}
