/* Living on Denman Image Gallery Widget — matches the homepage gallery. */

.lod-image-widget {
  width: 100%;
  max-width: 100%;
}

.lod-image-widget .lod-hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}

.lod-image-widget .lod-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #e9e1d3;
  box-shadow: 0 14px 34px rgba(25, 40, 35, 0.10);
  min-height: 180px;
}

.lod-image-widget .lod-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.lod-image-widget .lod-image-tall {
  min-height: 252px;
}

.lod-image-widget .lod-image-wide {
  grid-column: 1 / -1;
  min-height: 220px;
}

@media (max-width: 680px) {
  .lod-image-widget .lod-hero-gallery {
    grid-template-columns: 1fr;
  }

  .lod-image-widget .lod-image-wide {
    grid-column: auto;
  }
}

