.lkhc-wrap,
.lkhc-wrap * { box-sizing: border-box; }

.lkhc-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: stretch;
  width: 100%;
  max-width: 660px;
  margin-left: auto;
}

.lkhc-main,
.lkhc-top,
.lkhc-bottom {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(64, 28, 34, 0.10);
  background: #efe5dc;
}

.lkhc-main { min-height: 580px; }
.lkhc-top { min-height: 242px; }
.lkhc-bottom { min-height: 242px; }

.lkhc-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.lkhc-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lkhc-img--main,
.lkhc-img--bottom,
.lkhc-img--top {
  position: absolute;
  inset: 0;
}

.lkhc-badge {
  position: absolute;
  right: 125px;
  top: 50%;
  transform: translateY(-50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  background: #fffaf5;
  box-shadow: 0 14px 32px rgba(64, 28, 34, 0.12);
  border: 8px solid rgba(255,255,255,0.92);
  z-index: 3;
}

.lkhc-img--badge {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lkhc-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b3a46;
  background: linear-gradient(180deg,#f1e8df,#e7dace);
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .lkhc-wrap { max-width: 580px; grid-template-columns: minmax(0,1fr) 155px; }
  .lkhc-main { min-height: 520px; }
  .lkhc-top, .lkhc-bottom { min-height: 215px; }
  .lkhc-badge { right: 112px; width: 112px; height: 112px; }
}

@media (max-width: 767px) {
  .lkhc-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }
  .lkhc-main { min-height: 420px; }
  .lkhc-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .lkhc-top, .lkhc-bottom { min-height: 180px; }
  .lkhc-badge {
    width: 92px;
    height: 92px;
    right: 50%;
    top: auto;
    bottom: 122px;
    transform: translateX(50%);
  }
}
