/* semplice linea */
.divider-line {
    height: 1px;
    background: var(--gray-light);
}

/* linea accedi */
.divider-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.divider-box .line {
    flex: 1;
    height: 1px;
    background: var(--gray-light);
}

.divider-box .text {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-light);
}

/* label section */
.divider-section {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.divider-section::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-light);
}

/* playoff */
.playoff-cut {
    border-top: 2px solid var(--primary-500);
}

/* gradient border per public scenarios */
.border-gradient-4 {
    /* card featured */
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent));
    border-radius: 0;
}

.border-gradient-5 {
    /* hero dettaglio scenario */
    height: 5px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent));
}

/* separatore sezione per ruolo */
.divider-roster {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-mid);
    padding: 6px 14px 3px;
    background: var(--background);
    border-bottom: 1px solid #EEE;
}

.divider-roster::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--white);
}

/* accent bar sx */
.left-accent-bar {
    width: 4px;
    height: 36px;
    border-radius: 2px;
    background: var(--primary-500);
    flex-shrink: 0;
}