.experience-layouts-one_third_two_third_layout {
    margin-bottom: 50px !important;
}

#one-third-two-third-layout {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.one-third-layout {
    width: 37%;
    display: flex;
    flex-direction: column;
}

.two-third-layout {
    width: 62%;
}

@media screen and (max-width: 1024px) {
    #one-third-two-third-layout {
        flex-direction: column;
    }

    .one-third-layout {
        width: 100%;
        margin-bottom: var(--margin_between_layouts);
    }

    .two-third-layout {
        width: 100%;
        overflow: hidden;
    }
}

/* If a second image is added to the two third layout, hide it on desktop and show it on mobile/tablet sizes */
.two-third-layout .experience-assets-image_tile:last-child {
    display: none;
}

@media screen and (max-width: 1024px) {
    .two-third-layout .experience-assets-image_tile:first-child {
        display: none;
    }

    .two-third-layout .experience-assets-image_tile:last-child {
        display: block;
    }
}

/* Image tile sizing if placed in two thirds layout */
.two-third-layout .experience-assets-image_tile .image-tile {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .two-third-layout .experience-assets-image_tile {
        width: 168%;
        margin-left: -34%;
    }
}
