.accommodation-visual {
  padding: 72px 0 110px;
  background: #f7f4ec;
}

.accommodation-image-shell {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.accommodation-image-wrap {
  position: relative;
  overflow: hidden;
}

.accommodation-image-wrap::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 34%;
  height: 2px;
  background: rgba(146, 149, 33, 0.45);
}

.accommodation-image-wrap::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 0;
  width: 2px;
  height: 28%;
  background: rgba(146, 149, 33, 0.45);
}

.accommodation-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.4s ease;
}

.accommodation-image-wrap:hover img {
  transform: scale(1.035);
}

.accommodation-caption {
  max-width: 720px;
  margin-top: 18px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #6b685f;
}