.psvb-thumb-wrapper {
    position: relative;
    display: inline-block;
}

/* Badge Play in basso a destra, bianco su sfondo nero semitrasparente */
.psvb-video-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

/* Triangolo "Play" */
.psvb-video-badge::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #ffffff;
    margin-left: 3px; /* piccoli aggiustamenti per centrare visivamente */
}

/* Un minimo di adattamento su schermi piccoli */
@media (max-width: 480px) {
    .psvb-video-badge {
        width: 32px;
        height: 32px;
        right: 8px;
        bottom: 8px;
    }

    .psvb-video-badge::before {
        border-top-width: 7px;
        border-bottom-width: 7px;
        border-left-width: 12px;
    }
}
