.eq-header {
    display: flex; align-items: center; gap: 20px;
    background: var(--vd-white); border: 1px solid #dde1e8; border-radius: 14px;
    padding: 20px 24px; margin-bottom: 18px; box-shadow: 0 5px 18px rgba(20,23,31,.04);
}
.eq-header img { width: 84px; height: 84px; object-fit: contain; flex-shrink: 0; }
.eq-header h1 { margin: 0; font-size: 26px; color: var(--vd-navy); }
.eq-header .eq-sub { color: #5b6472; font-size: 14px; margin-top: 4px; }
.eq-header .eq-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; font-size: 13px; color: #8a93a3; }

.eq-standings-badge {
    margin-left: auto; text-align: center; background: #f5f7fb; border-radius: 10px;
    padding: 10px 18px; flex-shrink: 0;
}
.eq-standings-badge .eq-pos { font-size: 28px; font-weight: 900; color: var(--vd-navy); line-height: 1; }
.eq-standings-badge .eq-pos-label { font-size: 11px; color: #8a93a3; text-transform: uppercase; letter-spacing: .5px; }
.eq-standings-badge .eq-record { font-size: 13px; color: #5b6472; margin-top: 4px; }

.eq-panel { background: var(--vd-white); border: 1px solid #dde1e8; border-radius: 14px; padding: 18px; box-shadow: 0 5px 18px rgba(20,23,31,.04); margin-bottom: 18px; }
.eq-panel h3 { margin: 0 0 14px; font-size: 17px; color: var(--vd-navy); }

.eq-roster-group { margin-bottom: 18px; }
.eq-roster-group:last-child { margin-bottom: 0; }
.eq-roster-group h4 { margin: 0 0 8px; font-size: 12px; color: #8a93a3; text-transform: uppercase; letter-spacing: .8px; }
.eq-roster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.eq-player-row {
    display: flex; align-items: center; gap: 10px; padding: 8px 10px;
    background: #f7f8fa; border-radius: 8px; font-size: 13px;
    text-decoration: none; color: inherit;
}
.eq-player-row:hover { background: #eef1f6; }
.eq-player-row .eq-shirt {
    width: 28px; height: 28px; border-radius: 50%; background: var(--vd-navy); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; flex-shrink: 0;
}
.eq-player-row .eq-name { font-weight: 600; color: #1a2233; flex: 1; }
.eq-player-row .eq-pos-code { color: #8a93a3; font-size: 11px; }
.eq-player-row .eq-bio { color: #b0b6c0; font-size: 11px; white-space: nowrap; }

.eq-staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.eq-staff-item { padding: 8px 0; border-bottom: 1px solid #eef0f4; }
.eq-staff-item .eq-role { font-size: 11px; color: #8a93a3; text-transform: uppercase; letter-spacing: .5px; }
.eq-staff-item .eq-staff-name { font-weight: 600; color: #1a2233; font-size: 14px; }

.eq-match-list { display: flex; flex-direction: column; gap: 8px; }
.eq-match-row {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    background: #f7f8fa; border-radius: 10px; font-size: 13px; text-decoration: none; color: inherit;
}
.eq-match-row:hover { background: #eef1f6; }
.eq-match-team { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0; }
.eq-match-team img { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
.eq-match-team span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.eq-match-score { font-weight: 900; color: var(--vd-navy); font-size: 15px; min-width: 50px; text-align: center; }
.eq-match-date { color: #8a93a3; font-size: 12px; min-width: 90px; text-align: right; }


/* ===================== Lideres del equipo ===================== */
.eq-leaders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.eq-leader-card { display: block; background: var(--vd-gray-light); border-radius: 10px; padding: 10px 12px; text-decoration: none; }
.eq-leader-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .02em; color: #8a93a3; margin-bottom: 3px; }
.eq-leader-card strong { display: block; font-size: 14px; color: var(--vd-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eq-leader-card b { display: block; margin-top: 3px; font-family: var(--font-condensed); font-size: 15px; color: var(--vd-navy); }

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