
/* PAGE */
.players-page{
  padding:50px 20px;
}

/* TITLE */
.section-title-p{
  font-size:22px;
  font-weight:800;
  margin:30px 0 20px;
  border-bottom:1px solid #ddd;
  padding-bottom:10px;
}

/* CARD */
.player-card{
  position:relative;
  border-radius:15px;
  overflow:hidden;
  height:300px;
  background:#000;
}

/* IMAGE */
.player-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OVERLAY */
.player-overlay{
  position:absolute;
  bottom:0;
  width:100%;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color:#fff;
}

/* NUMBER */
.player-number{
  font-size:14px;
  border-left:3px solid red;
  padding-left:8px;
  display:block;
  margin-bottom:5px;
}

/* NAME */
.player-name{
  font-size:20px;
  font-weight:800;
  line-height:1.2;
}

/* RESPONSIVE */
@media(max-width:768px){

  .player-card{
    height:220px;
  }

  .player-name{
    font-size:16px;
  }

}
