.media__title {
    text-align: center;
    color: #ff0000;
    font-size: 20px;
    margin: 30px 0;
}

.media-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.media-gallery:after {
    content: "";
    /* flex: auto; */
    width: 32%;
}

.media-gallery__item {
    width: 32%;
    margin-bottom: 20px;
}

.media-gallery__img {
    width: 100%;
}

.media-gallery__name {
    font-size: 18px;
    text-align: left;
}

.media__link {
    display: table;
    text-align: center;
    margin: 20px auto;
    background: #fff;
    border: 1px solid #ff0000;
    font-size: 16px;
    padding: 10px 20px;
    /* width: fit-content; */
    transition: all 0.2s ease-in-out;
}

.media__link:hover {
    background: #ff0000;
    color: #fff;
}

.media__divider {
    width: 100%;
    background: #d1d1d1;
    height: 1px;
    margin-top: 30px;
}

.media-gallery__play {
    position: absolute;
    height: 45px;
}

.media-gallery__youtube {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .media-gallery {
        display: block;
    }

    .media-gallery__item {
        width: 100%;
        max-width: 360px;
        margin: 20px auto;
    }
}
