/* ============================================================
   BANDEROLE : nom du picto survole, en bas de l'ecran
   ============================================================ */
.banderole{
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 45;                         /* sous le cafard, au-dessus du contenu */
    width: max-content;                  /* ne se limite pas a la moitie de l'ecran */
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 6px 12px;
    background: #000;
    color: ivory;
    font-family: "alte_haas_grotesk", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity .15s ease, transform .15s ease;
}
.banderole.is-visible{
    opacity: 1;
    transform: translate(-50%, 0);
}
.banderole{
    flex-direction: column;              /* une ligne par image */
    align-items: flex-start;
    gap: 2px;
}
.banderole-ligne{
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
}
.banderole-num{
    font-family: "suisse_intl_monoregular", ui-monospace, monospace;
    font-size: 12px;
}
.banderole-nom{
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 600px){
    .banderole{ white-space: normal; bottom: 12px; }
}

/* smartphone : l'image lue (au centre de l'ecran) grossit legerement */
.rim_p img,
.rim_p2 img{
    transition: transform .2s ease;
}
.rim_p.is-lue img,
.rim_p2.is-lue img{
    transform: scale(1.08);
}
