.mw-video {
    display: flex;
    justify-content: center;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 auto 36px auto;
    gap: 10px;
    max-height: 440px;
    width: 100%;
}

.video-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mw-article-video {
    position: relative;
    max-width: 780px;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    border-radius: 8px;
}

.mw-article-video-box {
    height: 100% !important;
    width: 100% !important;
}

.mw-article-video-box iframe {
    height: 100% !important;
    width: 100% !important;
    border-radius: 8px;
}

.controls {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 1s ease;
}

.controls button {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.controls button p {
    margin-left: 20px;
    text-align: left;
    padding: 0 !important;
    color: #FFF !important;
    font-family: 'Nunito-bold', sans-serif;
    font-weight: 700;
}

.controls button img {
    width: 44px;
    height: 44px;
}

.controls button img:hover {
    transform: scale(1.1);
}

.media {
    width: 100%;
    height: 100%;
    transition: all 1s ease;
}

@media screen and (max-width: 768px) {
    .mw-video {
        max-width: 100%;
    }
}
