/* Kisure Frontend v625 — exact header fixtures + narrow Match Centre goal cards. */

/* Goal/event identity rows must reserve the remaining width for the person stack.
   The team crest and avatar stay fixed; the scorer name never has to compete with
   an assist badge placed on the far right. */
.football-commentary-person-row > .football-commentary-person {
    flex: 1 1 auto;
    min-width: 0;
}

.football-commentary-person__details {
    display: grid;
    flex: 1 1 auto;
    gap: .08rem;
    min-width: 0;
}

.football-commentary-person__details > strong {
    display: block;
    min-width: 0;
    max-width: 100%;
}

/* v625: assists are part of the scorer's text stack, directly below the scorer
   name/position. This deliberately overrides the old right-aligned sibling rule. */
.football-commentary-person__details > .football-commentary-assist {
    display: block;
    width: auto;
    margin: .08rem 0 0;
    color: var(--text-soft, #5b6b82);
    font-size: .69rem;
    font-weight: 750;
    line-height: 1.25;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

@media (max-width: 760px) {
    .football-commentary-person-row {
        gap: .5rem;
    }

    .football-commentary-person-row > .football-commentary-person {
        width: 0;
        flex: 1 1 0;
    }

    .football-commentary-person__details > strong {
        /* A long scorer may wrap to a second line rather than disappearing behind
           a horizontally competing assist label. */
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        line-height: 1.18;
    }

    .football-commentary-person__details > .football-commentary-assist {
        flex-basis: auto;
        margin-left: 0;
    }
}
