body h1.title {
    font-size: 28px;
    line-height: 34px;
    color: #17181A;
    font-weight: 600;
    margin-bottom: 32px;
}
body .container {
    max-width: 1400px;
}
.video-title {
    font-size: 20px;
    line-height: 26px;
    color: #17181A;
    font-weight: 600;
    margin-top: 16px;
}
.play-icon svg {
    width: 56px;
    height: 56px;
}
.video-page {
    padding: 40px 0 0;
}
.fluid-width-video-wrapper {
    width: 100%;
    position: relative;
    padding: 0;
}
.fluid-width-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}
.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.video-inner {
    width: calc(50% - 10px);
    border: 6px solid #f2f7ee;
    border-radius: 24px;
    padding: 24px;
}
.fluid-width-image-wrapper .img-block {
    width: 100%;
    position: relative;
    padding: 0;
    padding-top: 56.25%;
}
.fluid-width-image-wrapper .img-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}
.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .video-container {
        flex-direction: column;
        gap: 20px;
        margin: 0;
    }
    .video-inner {
        width: 100%;
        padding: 0;
    }
}
@media only screen and (max-width: 479px) {
}