.eco-house-card-picture,
.eco-house-card-picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.eco-house-card-picture img {
  object-fit: cover;
  object-position: center;
}

.case-detail-photo.eco-house-gallery-host {
  overflow: visible;
}

.eco-house-gallery {
  width: 100%;
  outline: none;
}

.eco-house-gallery:focus-visible .eco-house-gallery-stage {
  box-shadow: 0 0 0 3px rgba(11, 93, 59, 0.24);
}

.eco-house-gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg, 16px);
  background: #edf2ee;
  box-shadow: inset 0 0 0 1px rgba(11, 93, 59, 0.08);
}

.eco-house-gallery-picture,
.eco-house-gallery-picture img {
  display: block;
  width: 100%;
}

.eco-house-gallery-picture img {
  aspect-ratio: 16 / 10;
  height: auto;
  max-height: min(54vh, 500px);
  object-fit: contain;
  object-position: center;
  background: #edf2ee;
}

.eco-house-gallery-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(5, 37, 25, 0.78);
  color: #fff;
  font: 600 12px/1 var(--sans, Arial, sans-serif);
  backdrop-filter: blur(8px);
}

.eco-house-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0 0 3px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(5, 37, 25, 0.78);
  color: #fff;
  cursor: pointer;
  font: 300 30px/1 Arial, sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.eco-house-gallery-arrow:hover {
  background: rgba(11, 93, 59, 0.94);
}

.eco-house-gallery-arrow:focus-visible,
.eco-house-gallery-thumb:focus-visible {
  outline: 3px solid rgba(11, 93, 59, 0.32);
  outline-offset: 2px;
}

.eco-house-gallery-arrow--prev { left: 12px; }
.eco-house-gallery-arrow--next { right: 12px; }

.eco-house-gallery-caption {
  margin: 12px 2px 0;
  color: var(--muted, #607068);
  font: 500 13px/1.45 var(--sans, Arial, sans-serif);
}

.eco-house-gallery-thumbs {
  display: flex;
  gap: 9px;
  margin-top: 12px;
  padding: 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.eco-house-gallery-thumb {
  flex: 0 0 92px;
  height: 62px;
  margin: 0;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(11, 93, 59, 0.14);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.eco-house-gallery-thumb.is-active {
  border-color: var(--green-700, #0b5d3b);
  box-shadow: 0 0 0 1px var(--green-700, #0b5d3b);
}

.eco-house-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}

@media (max-width: 600px) {
  .eco-house-gallery-picture img {
    aspect-ratio: 4 / 3;
    max-height: 48vh;
  }

  .eco-house-gallery-arrow {
    width: 44px;
    height: 44px;
  }

  .eco-house-gallery-arrow--prev { left: 8px; }
  .eco-house-gallery-arrow--next { right: 8px; }

  .eco-house-gallery-counter {
    right: 8px;
    bottom: 8px;
  }

  .eco-house-gallery-thumb {
    flex-basis: 78px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-house-gallery-arrow,
  .eco-house-gallery-thumb {
    scroll-behavior: auto;
  }
}
