#rv-tv-perso-sub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    padding: 20px 0 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.rv-tv-perso-sub-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: transparent;
    transition: border-color .18s, background .18s;
    min-width: 80px;
    user-select: none;
    -webkit-user-select: none;
}
.rv-tv-perso-sub-btn:hover,
.rv-tv-perso-sub-btn.rv-tv-focus {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
}
.rv-tv-perso-sub-btn.active {
    border-color: #fff;
    background: rgba(255,255,255,0.12);
}
.rv-tv-perso-sub-btn .rv-tv-psub-label {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}
.rv-tv-perso-sub-btn svg .hexa-bg {
    fill: #7a7a7a;
    transition: fill .18s;
}
.rv-tv-perso-sub-btn.active svg .hexa-bg,
.rv-tv-perso-sub-btn:hover svg .hexa-bg,
.rv-tv-perso-sub-btn.rv-tv-focus svg .hexa-bg {
    fill: #1a1a1a;
}
