/* =========================================================
   D17 Team Ops — Public Roster Numbers Card
   Injected into team pages via d17_team_template_sections.
   The .d17tp-card shell is provided by the team template.
   ========================================================= */

.d17-uniform-roster-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1B365D;
    margin: 0 0 16px;
}

.d17-roster-grid {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 180px, 1fr ) );
    gap: 8px;
}

.d17-roster-player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    background: #f8fafc;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

.d17-roster-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 6px;
    background: #1B365D;
    color: #fff;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.d17-roster-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

@media ( max-width: 480px ) {
    .d17-roster-grid {
        grid-template-columns: 1fr 1fr;
    }
}
