/* Tabela Ligi */
.pls-table-wrapper { overflow-x: auto; margin-bottom: 30px; background: #fff; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.pls-league-table { width: 100%; border-collapse: collapse; text-align: center; font-family: sans-serif; font-size: 14px; }
.pls-league-table th { background: #0C1346; color: #e2e8f0; padding: 12px 10px; font-weight: 700; text-transform: uppercase; font-size: 12px; border-bottom: 2px solid #ddd; }
.pls-league-table td { padding: 12px 10px; border-bottom: 1px solid #eee; vertical-align: middle; }
.pls-league-table tr:hover { background-color: #0c134631; }
.pls-league-table .pls-team { text-align: left; font-weight: 600; }
.pls-team-inner { display: flex; align-items: center; gap: 10px; }
.pls-team-logo { border-radius: 50%; object-fit: contain; }
@media (max-width: 600px) { .pls-team-name-full { display: none; } .pls-team-name-short { display: inline-block !important; } }

/* Slider Meczów i Lista */
.pls-slider-wrapper { position: relative; margin: 20px 0; width: 100%; overflow: hidden; }
.pls-slider-header { background: #0C1346; color: #fff; padding: 10px; font-weight: bold; border-radius: 5px 5px 0 0; }
.pls-swiper-container { background: #f8f9fa; border: 1px solid #ddd; border-top: none; padding: 15px; width: 100%; }
.pls-match-slide { 
    /* width: 280px; <-- USUNIĘTO SZTYWNĄ SZEROKOŚĆ */
    width: 100%; 
    background: #fff; 
    border: 1px solid #e2e8f0; 
    border-radius: 8px; 
    padding: 15px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    box-sizing: border-box; 
}.pls-match-teams { display: flex; justify-content: space-between; align-items: center; }
.pls-match-slide .pls-team { display: flex; flex-direction: column; align-items: center; gap: 5px; width: 40%; font-size: 12px; font-weight: 600; text-align: center; }
.pls-match-slide .pls-score { width: 20%; text-align: center; font-size: 18px; font-weight: 800; }
.pls-round-heading { margin-top: 30px; border-bottom: 2px solid #2271b1; padding-bottom: 5px; }
.pls-match-row { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #eee; }
.pls-match-row-team { width: 40%; font-weight: bold; }
.pls-match-row-team.is-home { text-align: right; } .pls-match-row-team.is-away { text-align: left; }
.pls-match-row-score { width: 20%; text-align: center; font-size: 18px; font-weight: 900; }
.pls-front-edit-bar { text-align: center; padding-bottom: 5px; }
.pls-front-edit-link { font-size: 11px; text-decoration: none; }

/* Nasz Zespół - Wizytówka */
.pls-roster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; margin: 40px 0; }
.pls-person-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); text-align: center; border: 1px solid #f0f0f1; position: relative; }
.pls-person-photo { width: 100%; height: 300px; background-color: #f8f9fa; display: flex; align-items: center; justify-content: center; position: relative; }
.pls-person-photo img { width: 100%; height: 100%; object-fit: cover; }
.pls-player-number { position: absolute; bottom: -15px; right: 20px; color: #fff; font-size: 28px; font-weight: 900; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 3px solid #fff; z-index: 2; }
.pls-person-info { padding: 25px 20px 20px; position: relative; z-index: 1; }
.pls-person-name { margin: 0 0 5px 0; font-size: 1.25rem; color: #1a202c; }
.pls-person-name strong { display: block; font-size: 1.4rem; text-transform: uppercase; }
.pls-person-role { display: inline-block; color: #fff; font-size: 11px; padding: 4px 10px; border-radius: 20px; margin-bottom: 15px; }
.pls-player-stats { display: flex; justify-content: center; gap: 15px; border-top: 1px solid #eee; padding-top: 15px; font-size: 13px; color: #718096; }
.pls-player-stats span { font-weight: bold; color: #2d3748; font-size: 15px; }
.pls-staff-card .pls-person-photo { height: 250px; }