.website-canvas-wrap {
  padding: clamp(30px, 5vw, 70px);
  background: #ede2d1;
}
.website-content-canvas {
  position: relative;
  width: min(1200px, 100%);
  margin: auto;
  overflow: hidden;
  border: 1px solid #d8ccba;
  background: #fffdf9;
  container-type: inline-size;
}
.website-content-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #9a7a4e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-align: center;
}
.website-content-item {
  position: absolute;
  overflow: hidden;
}
.website-content-item img {
  display: block;
  width: 100%;
  height: 100%;
}
.website-content-text {
  display: flex;
  padding: 1.2cqw;
  white-space: pre-wrap;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.website-content-canvas.has-content .website-content-empty {
  display: none;
}
@media (max-width: 760px) {
  .website-canvas-wrap {
    padding: 18px 10px;
  }
}
