@media only screen and (min-width: 50rem) {
    .image-layout-row {
        display: flex;
        flex-direction: row;
        width: 52rem;
    }
}

@media only screen and (max-width: 50rem) {
    .image-layout-row {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-left: 1rem;
    }
}

.image-layout-half {
    width: 50%;
}

.image-layout-twothirds {
    width: 66%;
}

.image-layout-column {
    display: flex;
    flex-direction: column;
}

.image-layout-cover-w {
    width: 100%;
    object-fit: cover;
    height: fit-content;
    overflow: hidden;
}

.image-layout-cover-h {
    height: 100%;
    object-fit: cover;
}

.image-fill-width {
    width: 100%;
}


.image-margin-right {
    margin-right: 1rem;
}

.image-margin-bottom {
    margin-bottom: 1rem;
}

.image-border {
    border: 2px solid black;
}

@media only screen and (min-width: 50rem) {
    .text-layout-row {
        width: 52rem;
        margin-bottom: 2rem;
    }

    .video-container {
        width: 52rem; 
        margin-top: -3rem; 
        margin-bottom: -3rem;
    }

    .vimeo-embed {
        width: 100%; 
        height: 40rem;
    }

    .text-layout-caption {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        font-size: 12pt;
        text-align: center;
    }    
}

@media only screen and (max-width: 50rem) {
    .text-layout-row {
        width: 100%;
        margin-bottom: 2rem;
    }

    .video-container {
        width: 100%; 
        margin-top: -1rem; 
        margin-bottom: 0rem;
    }

    .vimeo-embed {
        width: 100%; 
        height: 20rem;
    }

    .text-layout-caption {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        font-size: 12pt;
        text-align: center;
        width: 100%;
    }    
}