/* Homepage project mosaics: let the landscape cards define the grid rows,
   and crop every visual into its assigned reference-style tile. */
@media only screen and (min-width: 851px) {
  .home .projectList > li {
    min-height: 0;
    overflow: hidden;
  }

  .home .projectList > li > a,
  .home .projectList > li > a > figure {
    width: 100%;
    height: 100% !important;
  }

  .home .projectList > li > a > figure {
    position: relative;
  }

  .home .projectList > li > a > figure > picture {
    position: absolute;
    inset: 0;
    display: block;
  }

  .home .projectList > li > a > figure img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .home .projectList > li > a > figure figcaption {
    z-index: 1;
  }
}