<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ================================================================================ */
/* SQUARES */
/* (modules.scss) */
/* ================================================================================ */
.squares {
  display: block;
  clear: both;
  border: 1px solid #ccc;
  padding: 2%; }
  .squares .title {
    display: block;
    clear: both;
    margin-bottom: 25px; }
  .squares .square {
    float: left;
    width: 31.3%;
    margin-right: 3%;
    margin-bottom: 3%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .squares .square:nth-of-type(3n) {
      margin-right: 0; }
    @media (max-width: 480px) {
      .squares .square {
        width: 48.5%; }
        .squares .square:nth-of-type(3n) {
          margin-right: 3%; }
        .squares .square:nth-of-type(2n) {
          margin-right: 0%; } }
  .squares .shade {
    -webkit-transition: height 400ms ease-in-out;
    -moz-transition: height 400ms ease-in-out;
    -o-transition: height 400ms ease-in-out;
    transition: height 400ms ease-in-out;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-decoration: none !important; }
    .squares .shade .inner-pad {
      padding: 10px; }
    .squares .shade a {
      color: #fff;
      display: block; }
    .squares .shade p {
      -webkit-transition: opacity 400ms ease-in-out;
      -moz-transition: opacity 400ms ease-in-out;
      -o-transition: opacity 400ms ease-in-out;
      transition: opacity 400ms ease-in-out;
      opacity: 0; }
    @media (max-width: 480px) {
      .squares .shade {
        font-size: .875em; } }
    @media (max-width: 320px) {
      .squares .shade {
        font-size: .750em; } }
  .squares .square.on-css .shade {
    height: 100%; }
    .squares .square.on-css .shade p {
      opacity: 1; }</pre></body></html>