/* Players Page Styles - Simple Card Design */

/* 5 Column Grid */
.col-lg-2-4 {
    width: 20%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}

/* Position Title */
.players-position-title {
    font-size: 34px;
    font-weight: 700;
    color: #001F54;
    margin: 35px 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #001F54;
    text-transform: uppercase;
}

/* Player Grid Container */
.players-grid-container {
    margin-bottom: 50px;
}

/* Player Card Link */
.players-card-link {
    text-decoration: none !important;
    display: block;
    margin-bottom: 20px;
}

.players-card-link:hover,
.players-card-link:focus {
    text-decoration: none !important;
}

/* Player Card Wrapper */
.players-card-wrapper {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Player Photo Container */
.players-photo-container {
    position: relative;
    background: #F5F5F5;
    height: 0;
    padding-bottom: 75%;
}

/* Player Photo */
.players-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Jersey Number Badge */
.players-jersey-number {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #0033A0;
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

/* Player Info Section */
.players-info-section {
    padding: 12px 8px;
    background: #fff;
}

/* Player Name */
.players-name {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 38px;
}

/* Responsive Design */

@media (max-width: 1199px) {
    .col-lg-2-4 {
        width: 33.333%;
    }

    .players-position-title {
        font-size: 30px;
        margin: 30px 0 20px 0;
    }

    .players-photo-container {
        padding-bottom: 78%;
    }

    .players-jersey-number {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .players-info-section {
        padding: 11px 8px;
    }

    .players-name {
        font-size: 14px;
        min-height: 36px;
    }
}

@media (max-width: 991px) {
    .col-lg-2-4 {
        width: 33.333%;
    }

    .players-position-title {
        font-size: 28px;
        margin: 25px 0 18px 0;
    }

    .players-photo-container {
        padding-bottom: 80%;
    }

    .players-jersey-number {
        width: 38px;
        height: 38px;
        font-size: 16px;
        top: 7px;
        left: 7px;
    }

    .players-info-section {
        padding: 10px 7px;
    }

    .players-name {
        font-size: 13px;
        min-height: 34px;
    }

    .players-card-link {
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .col-lg-2-4 {
        width: 50%;
    }

    .players-position-title {
        font-size: 26px;
        margin: 20px 0 15px 0;
        padding-bottom: 10px;
    }

    .players-photo-container {
        padding-bottom: 85%;
    }

    .players-jersey-number {
        width: 36px;
        height: 36px;
        font-size: 15px;
        top: 7px;
        left: 7px;
    }

    .players-info-section {
        padding: 9px 6px;
    }

    .players-name {
        font-size: 13px;
        min-height: 32px;
    }

    .players-card-link {
        margin-bottom: 15px;
    }

    .players-grid-container {
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .players-position-title {
        font-size: 24px;
    }

    .players-photo-container {
        padding-bottom: 90%;
    }

    .players-jersey-number {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .players-name {
        font-size: 12px;
        min-height: 30px;
    }
}
