.video-block {
    display: flex;
    gap: 20px;
}

.video-list {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-item {
    display: flex;
    gap: 10px;
    padding: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.video-item:hover {
    color: var(--orange);
}

.video-item.active {
    background-color: var(--bg-light-grey);
    border-radius: var(--radius);
}

.video-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
}

.video-duration {
    font-size: 20px;
    line-height: 24px;
    color: var(--grey);
}

.video-player {
    width: 70%;
}

.video-player a {
    display: block;
    height: 100%;
    position: relative;
}

.video-player a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--big-radius);
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease-out, height 0.3s ease-out;
}

.play-btn span {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.video-player:hover .play-btn {
    width: 80px;
    height: 80px;
}

@media (max-width: 1100px) {
    .video-list {
        width: 40%;
    }

    .video-player {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .video-block {
        flex-wrap: wrap;
    }

    .video-block > div {
        width: 100%;
    }
}