<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    Typography
*/
/*
    Media queries
*/
/*
    Screen visual height minus UI
*/
/*
    Screen - Top and bottom values
*/
/*
    Page mixins
*/
/*
    Hide scrollbars
*/
/*
    Borders
*/
/*
    Functions
*/
.flex-component {
  height: 100%;
}
.text-component ~ .flex-component {
  max-width: calc(100% - 20px);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .text-component ~ .flex-component {
    max-width: 100%;
  }
}

.grid-item .experience-region &gt; .flex-component + .flex-component {
  margin-top: 10px;
}</pre></body></html>