/* Wanderkin day-tile frame
   White canvas, ink border, artwork fills edge to edge.
   Matches the reference house illustration frame system. */

.wk-tile {
  background: #FFFFFF;
  padding: 3%;
  box-sizing: border-box;
  line-height: 0;
}

.wk-tile-inner {
  border: 3px solid #14100E;
  overflow: hidden;
  line-height: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.wk-tile-inner img,
.wk-tile-inner video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Tiles with a video layer: video sits behind the still image
   (which matches the video's first frame) and is revealed on hover. */
.wk-tile-inner img {
  z-index: 2;
  transition: opacity .2s ease;
}

.wk-tile-inner video {
  z-index: 1;
}
