/* ============= MÓDULO AYUDA — estilos aparte, no toca styles.css ============= */

.help-video-card {
    background: rgba(39,39,42,.5);
    border: 1px solid rgba(63,63,70,.5);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 12px;
}
.help-video-card:hover {
    background: rgba(39,39,42,.8);
    border-color: rgba(245,158,11,.4);
}
.help-video-thumb {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(245,158,11,.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
