/**
 * Youth Squad shortcode.
 *
 * Safeguarding variant of the adult squad grid:
 * - first names only
 * - no player photos
 * - team squad icon reused for every player
 */

.fcm-youth-squad {
    width: 100%;
    box-sizing: border-box;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
}

.fcm-youth-squad,
.fcm-youth-squad * {
    box-sizing: border-box;
}

.fcm-youth-squad__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 14px;
}

.fcm-youth-squad__title {
    margin: 0;
    color: #1F3094;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: clamp(20px, 2.1vw, 30px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.fcm-youth-squad__count {
    flex: 0 0 auto;
    color: #8A90A2;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.fcm-youth-squad__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 14px;
    width: 100%;
}

.fcm-youth-squad__card {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 98px;
    padding: 10px 14px 10px 11px;
    border: 2px solid #1F3094;
    border-radius: 14px;
    background: #fff;
    color: #1F3094;
    overflow: hidden;
}

.fcm-youth-squad__img {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    overflow: hidden;
    color: #1F3094;
}

.fcm-youth-squad__img img {
    display: block;
    width: 74px;
    height: 74px;
    object-fit: contain;
    object-position: center;
}

.fcm-youth-squad__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    color: #1F3094;
    opacity: .72;
}

.fcm-youth-squad__fallback svg {
    display: block;
    width: 64px;
    height: 64px;
}

.fcm-youth-squad__fn {
    min-width: 0;
    color: #1F3094;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fcm-youth-squad__empty {
    width: 100%;
    padding: 18px 20px;
    border: 2px dashed rgba(31, 48, 148, .35);
    border-radius: 14px;
    background: #fff;
    color: #1F3094;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 767px) {
    .fcm-youth-squad__top {
        display: block;
    }

    .fcm-youth-squad__count {
        margin-top: 6px;
    }

    .fcm-youth-squad__grid {
        grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
        gap: 10px;
    }

    .fcm-youth-squad__card {
        min-height: 86px;
        padding: 8px 10px;
        border-radius: 12px;
    }

    .fcm-youth-squad__img {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        margin-right: 10px;
    }

    .fcm-youth-squad__img img,
    .fcm-youth-squad__fallback {
        width: 62px;
        height: 62px;
    }

    .fcm-youth-squad__fallback svg {
        width: 54px;
        height: 54px;
    }
}
