/* Global layout quirks/fixes shared site-wide */
#et-main-area { position: relative; z-index: 1; }

/** stop cols from collapsing on mobile **/
@media (max-width:980px) {
  .keep-cols .et_pb_column_1_3 { width:33% !important; }
  .keep-cols .et_pb_column_1_2 { width:49% !important; }
}

/** columns not working consistently in the Builder (utility class) **/
.column-override .et_pb_posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  & article.et_pb_post {
    background-color:#f5f5f5;
    margin-bottom:0;
  }
}
