.hipv-videos {
    margin-bottom: 1.5rem;
}

.hiupv-videos-container a {
    position: relative;
}

.hiupv-videos-container a img {
    width: 5.3125rem;
    height: 5.3125rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid #000;
    padding: 0.125rem;
}

.hiupv-videos-container .play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hiupv-videos-container {
    display: flex;
}

.hiupv-video-item {
    margin-right: 0.75rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.hiupv-video-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    border-radius: 0.625rem;
    z-index: 1;
}

.hiupv-video-item:hover::before {
    opacity: 0.3;
    visibility: visible;
}