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

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

@media screen and (min-width: 40em) {
    .layout--three-columns > .columns-wrapper > .layout__region--left,
    .layout--three-columns > .columns-wrapper > .layout__region--right {
        flex: 0 1 33%;
    }
    .layout--three-columns > .columns-wrapper > .layout__region--center {
        flex: 0 1 34%;
    }
}

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