<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Equalize Blog Columns*/
@media only screen and (min-width: 980px) {
  .blog-grid .et_pb_ajax_pagination_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em 1em;
    grid-template-areas: ". . ." ". . ." ". . .";
  }
}

@media (max-width: 980px) {
  .blog-grid .et_pb_post {
    margin-bottom: 80px !important;
  }
}
</pre></body></html>