<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Grid Layout for any template.
 */

.strong-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  /* to center items in a less-than-full row: */
  justify-content: space-around;
  /* to left-justify items in a less-than-full row: */
  /*justify-content: space-between;*/
}

/* specificity required */
.strong-view .strong-content.strong-grid .wpmtst-testimonial {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px 0;
}

.strong-content.strong-grid.columns-2 .wpmtst-testimonial {
  width: 48%;
}

.strong-content.strong-grid.columns-3 .wpmtst-testimonial {
  width: 31%;
}

.strong-content.strong-grid.columns-4 .wpmtst-testimonial {
  width: 23%;
}

.strong-view .strong-content.strong-grid .wpmtst-testimonial-inner {
  flex: 1 0 auto;
}

/* either no JavaScript or no Flexbox */
html.no-js .strong-grid .wpmtst-testimonial,
.strong-grid.noflex .wpmtst-testimonial {
  float: left;
  margin-right: 1%;
  margin-left: 1%;
}

html.no-js .strong-grid .wpmtst-testimonial {
  float: left;
  margin-right: 1%;
  margin-left: 1%;
}

/* float the last column */
.strong-grid.columns-2.noflex .wpmtst-testimonial:nth-of-type(2n+2),
.strong-grid.columns-3.noflex .wpmtst-testimonial:nth-of-type(3n+3),
.strong-grid.columns-4.noflex .wpmtst-testimonial:nth-of-type(4n+4) {
  float: right;
}

/* responsive */
@media only screen and (max-width: 480px) {
  .strong-view .strong-content.strong-grid .wpmtst-testimonial {
    width: 100%;
  }
}
</pre></body></html>