<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * @file
 * Provides the layout styles for layout_threecol.
 */

.layout-paragraphs-layout .layout--threecol {
  display: flex;
  flex-wrap: wrap;
}

.layout-paragraphs-layout .layout--threecol &gt; .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout-paragraphs-layout .layout--threecol &gt; .layout__region--first,
  .layout-paragraphs-layout .layout--threecol &gt; .layout__region--third {
    flex: 0 1 33%;
  }
  .layout-paragraphs-layout .layout--threecol &gt; .layout__region--second {
    flex: 0 1 34%;
  }
}
</pre></body></html>