/*---------------------------
team
----------------------------*/
.team_introduction {
    margin-top: 2.5rem;
}

/*---------------------------
scroll to players button
----------------------------*/
.scroll-to-players-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    color: #555;
    background-color: var(--base-color);
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.scroll-to-players-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-to-players-btn img {
    width: 1rem;
    height: 1rem;
}

.team_introduction h2 {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
    padding: 0.5rem 1rem;
    width: fit-content;
    border-radius: 3px;
}

.team_introduction.u18 h2 {
    background-color: var(--u18-main);
}

.team_introduction.u15 h2 {
    background-color: var(--u15-main);
}

.team_introduction.girls h2 {
    background-color: var(--girls-main);
}

.team_introduction_img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 3px;
    overflow: hidden;
}

.team_introduction_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team_introduction img,
.team_introduction video {
    width: 100%;
    border-radius: 3px;
    aspect-ratio: 16/9;
}

.team_introduction_text {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 3px;
    color: #000;
    font-size: 0.95rem;
    line-height: 1.5;
    letter-spacing: 0.05rem;
    font-weight: 400;
    text-align: left;
}

/*---------------------------
players grid
----------------------------*/
.player_card_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.players_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .players_grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.player_card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.player_card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.player_photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.player_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player_info {
    margin-top: 0.5rem;
}

.squad_number {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.player_name {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.2;
}