.video {
    padding-top: 100rem;
    overflow: hidden;
}

.video-title {
    font-weight: 600;
    font-size: 40rem;
    line-height: 130%;
    color: #263141;
}

.video-items {}

.video-item {
    border-radius: 20rem;
    overflow: hidden;
    position: relative;
    /* Maintain aspect ratio 16:9 */
    height: 0;
    padding-bottom: 76.25%; /* 16:9 aspect ratio */
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
}

.video-item__background {
    background-color: rgba(167, 143, 119, 0.6);
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.video-item__icon {
    display: block;
    height: auto;
    width: 102rem;
}


.video-item__title {
    color: #263141;
    font-size: 15rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    z-index: 3;
    padding-top: 10px;
}

.video-buttons {
    text-align: center;
}

@media (hover: hover) {
    .video-item__background {
        transition: background-color 0.25s;
    }

    .video-item__background:hover {
        background-color: rgba(167, 143, 119, 0.3);
    }
}

@media (max-width: 991px) {
    .video {
        padding-top: 50rem;
    }

    .video-item__title {
        font-size: 12rem;
        padding: 15rem 10rem 10rem;
    }
}