/* Bouton "?" d'aide sur les cards de fonctionnalités (ouvre un dialog). */
.feature-help {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    z-index: 3; /* au-dessus des spans, même pendant le flip (z-index -1/1) */
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    line-height: 1;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: #fff;
    color: #576A5A; /* tfl-vert */
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.feature-help:hover,
.feature-help:focus {
    opacity: 1;
}
