/* =========================================
   Widget Sport — SpazioReggio
   ========================================= */

.sr-calcio-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0.5rem 0;
}

.sr-calcio-card {
    border-radius: var(--border-radius-lg, 12px);
    overflow: hidden;
    border: 0.5px solid #e0e0e0;
    background: #fff;
}

.sr-calcio-header {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
}

.sr-calcio-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
}

.sr-calcio-nome {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sr-calcio-league {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-left: auto;
}

.sr-calcio-body {
    padding: 0 14px 12px;
}

.sr-calcio-sezione {
    padding: 8px 0;
    border-top: 0.5px solid #e8e8e8;
}

.sr-calcio-sezione:first-child {
    border-top: none;
}

.sr-calcio-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #aaa;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sr-calcio-partita {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

.sr-calcio-squadra {
    font-size: 12px;
    font-weight: 500;
    color: #222;
}

.sr-calcio-squadra-dx {
    text-align: right;
}

.sr-calcio-risultato {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 3px 10px;
    text-align: center;
    white-space: nowrap;
}

.sr-calcio-risultato-live {
    background: #c00;
    color: #fff;
}

.sr-calcio-meta {
    font-size: 11px;
    color: #bbb;
    margin-top: 4px;
    display: block;
}

/* Pallino live */
.sr-live-dot {
    width: 6px;
    height: 6px;
    background: #c00;
    border-radius: 50%;
    display: inline-block;
    animation: sr-blink 1s infinite;
    flex-shrink: 0;
}

@keyframes sr-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Responsive */
@media (max-width: 600px) {
    .sr-calcio-wrapper {
        grid-template-columns: 1fr;
    }
}
