/*
 * @file
 * Provides the layout styles for layout_four_columns.
 */
/*
.layout--four-columns {
    display: flex;
    flex-wrap: wrap;
}

.layout--four-columns > .layout__region {
    flex: 0 1 100%;
    display: flex;
    flex-direction: column;
}
.layout--four-columns > .columns-wrapper {
    flex: 0 1 100%;
    display: flex;
    flex-direction: row;
}

@media screen and (min-width: 40em) {
    .layout--four-columns > .columns-wrapper > .layout__region--first,
    .layout--four-columns > .columns-wrapper > .layout__region--second,
    .layout--four-columns > .columns-wrapper > .layout__region--third,
    .layout--four-columns > .columns-wrapper > .layout__region--fourth {
        flex: 0 1 25%;
    }
}

.layout--four-columns video {
    max-width: 100%;
    height: auto;
}
*/