/*
 * @file
 * Provides the layout styles for three-column layout section.
 */

.layout--threecol-with-title {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (min-width: 40em) {
    .threecol-with-title__left {
        display: flex;
        flex-direction: column;
        flex: 0 1 66%;
    }

    .layout__region--third {
        flex: 0 1 33%;
    }

    .threecol-with-title__first-and-second {
        display: flex;
        flex-direction: row;
    }

    .threecol-with-title__first-and-second > .layout__region {
        flex: 1;
    }
}
