.tile {
    width: 400px;    /* set your tile’s width */
    height: 200px;   /* set your tile’s height */
    overflow: hidden;/* hide any overflow */
  }
  
  .tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* fill & crop to maintain aspect ratio */
    object-position: center; /* center the crop */
    display: block;        /* remove inline‑img whitespace */
  }
  