.blog-post {

}
.blog-post .item {
    width: 100%
}
/*.blog-post h1 {*/
/*    color: #fff;*/
/*    text-align: center;*/
/*    font-weight: 600;*/
/*    font-size: 64px;*/
/*    line-height: 87px;*/
/*}*/
.blog-post .item .container {
    width: 90%;
    max-width: 1536px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12.5%;
    padding: 128px 0;
}
.blog-post .item .image-wrapper {
    width: 512px;
    height: 512px;
}
.blog-post .item .image-wrapper img {
    width: 512px;
    height: 512px;
    object-fit: cover;
    border-radius: 40px;
}
.blog-post .item .video-wrapper {
    position: relative;
}
.blog-post .item .video-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    z-index: 1;
    cursor: pointer;
}
.blog-post .item .video-wrapper video {
    max-width: 900px;
    max-height: 512px;
    border-radius: 20px;
    transition: 0.5s;
}
.blog-post .video-wrapper .play-button-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.blog-post .item h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 66px;
    margin-bottom: 32px;
}
.blog-post .item p,
.blog-post .item ul {
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
}

/***********************/

.blog-post .item:nth-child(2n+1){
    background-color: #1A191D;
    color: #fff;
}
.blog-post .item:nth-child(2n+1) .container{
    flex-direction: row;
}


/***********************/

.blog-post .item:nth-child(2n) {
    background-color: #fff;
    color: #1A191D;
}
.blog-post .item:nth-child(2n) .container {
    flex-direction: row-reverse;
}
/***********************/
.blog-post .media-wrapper-youtube iframe {
    height: 512px;
    width: 900px;
    border-radius: 20px;
}

/***********************/
/***********************/
@media (max-width: 1440px) {
    .blog-post .item .video-wrapper video {
        max-width: 600px;
    }
    .blog-post .media-wrapper-youtube iframe {
        width: 600px;
        height: 340px;
    }
}
@media (max-width: 1280px) {
    .blog-post .item .container {
        max-width: 832px;
        width: 85%;
        padding: 48px 0;
    }
    .blog-post .item .image-wrapper {
        width: 284px;
        height: 284px;
    }
    .blog-post .item .image-wrapper img {
        width: 284px;
        height: 284px;
    }
    .blog-post .item .video-wrapper .play-button {
        width: 76px;
        height: 76px;
    }
    .blog-post .item .video-wrapper video {
        max-height: 284px;
        max-width: 400px;
        border-radius: 10px;
    }
    .blog-post .item h1 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 16px;
    }
    .blog-post .item p,
    .blog-post .item ul {
        font-size: 16px;
        line-height: 22px;
    }
    .blog-post .media-wrapper-youtube iframe {
        width: 400px;
        height: 226px;
        border-radius: 10px;
    }
}
@media (max-width: 960px) {
    .blog-post .item .video-wrapper video {
        max-height: 284px;
        max-width: 284px;
    }
    .blog-post .media-wrapper-youtube iframe {
        width: 311px;
        height: 176px;
    }
}

@media (max-width: 820px) {
    .blog-post .item .container {
        width: 90%;
        gap: 7.5%;
    }
}

@media (max-width: 750px) {
    .blog-post {
        padding-top: 16px;
    }
    .blog-post .item .container {
        width: 85%;
        padding: 32px 0;
        flex-direction: column !important;
        gap: 16px;
    }
    .blog-post .item .image-wrapper {
        width: 311px;
        height: 311px;
    }
    .blog-post .item .image-wrapper img {
        width: 311px;
        height: 311px;
    }
    .blog-post .item .video-wrapper .play-button {
        width: 64px;
        height: 64px;
    }
    .blog-post .item .video-wrapper video {
        max-height: 311px;
        max-width: 311px;
    }
}

@media (max-width: 480px) {
    .blog-post .item .container {
        width: 90%;
        max-width: 311px;
    }
    .blog-post .item h1 {
        font-weight: 500;
        font-size: 24px;
    }
    .blog-post .item p,
    .blog-post .item ul {
        font-weight: 400;
        font-size: 14px;
    }
}
