/* HOTFIX HERO NYT SCOREBOARD */

/* contenitore riga */
.ps-hero-nyt-score-row {
    display: flex !important;
    align-items: center;
    width: 100%;
}

/* lato sinistro */
.ps-hero-nyt-score-side {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 0;
}

/* lato destro FORZATO */
.ps-hero-nyt-score-side--right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 0;
    margin-left: auto;
    text-align: right;
}

/* ordine: nome poi logo */
.ps-hero-nyt-score-side--right .ps-hero-nyt-score-team {
    order: 1;
}

.ps-hero-nyt-score-side--right .ps-hero-nyt-score-logo {
    order: 2;
    margin-left: 8px;
}

/* centro */
.ps-hero-nyt-score-mid {
    flex: 0 0 auto;
    margin: 0 12px;
}

/* mobile */
@media (max-width: 768px) {
    .ps-hero-nyt-score-row {
        flex-wrap: nowrap;
    }

    .ps-hero-nyt-score-side,
    .ps-hero-nyt-score-side--right {
        min-width: 0;
    }
}
