.players-search {
    background: #F5F5F5;
    padding: 10px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.players-search__input {
    width: 30%;
}

.players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 30px;
}

.players__item {
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    color: #333333;
    text-decoration: none;
}

.players__item-img {
    flex-shrink: 0;
}

.players__item-info {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.players__item-name {
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 16px;
}

.players__item-name:after {
    content: '';
    margin-top: 10px;
    height: 2px;
    width: 30px;
    background: #FF2424;
    display: block;
}

.players__item-stats {
    font-size: 14px;
    color: #888888;
}

.players__item-stats + .players__item-stats {
    margin-top: 10px;
}

.players__item-stats-value {
    font-weight: 800;
}

.players__double {
    display: flex;
    flex-direction: column;
    width: 135px;
    flex-shrink: 0;
}

.players__double-img:first-child {
    align-self: flex-start;
}

.players__double-img:last-child {
    align-self: flex-end;
    margin-top: -40px;
}

.players__double-img:hover {
    z-index: 1;
}

@media (max-width: 520px) {
    .players-search__input {
        width: 100%;
    }
    .search_input input {
        width: 100%;
    }
}


.player-tile{
    height:100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-radius: 6px;
    /* box-shadow: 0 6px 12px 0 #3E10101A; */
    box-shadow: 0 6px 12px 0 var(--box-shadow-color);

    border: 1px solid transparent;

    font-family: 'Inter', sans-serif;

    text-decoration: none;

    transition: 0.3s;
}
.player-tile:hover{
    box-shadow: 0 0 0 0 #0000;
    border-color: #E0E0E0;
}
.player-tile__image{
    /* width: 100px; */
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 6px; 
    flex-shrink: 0;
}

.player-tile__info{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.player-tile__name{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 5px;
    /* font-family: 'Inter', sans-serif; */
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;


    color: #333333;
}

.player-tile__name:after{
    content: '';
    position: absolute;
    width: 70px;
    height:2px;
    background: #FF2424;
    left: 0;
    bottom: 0;
}

.player-tile__attributes{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.player-tile__attribute{
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;

}

.player-tile__attribute__label{
    color: #888888;
}
.player-tile__attribute__value{
    color: #333333;
}