.lcw-wrap {
/*   margin: 0 auto 2.75rem;
  padding: 28px clamp(18px, 3.6vw, 90px) 36px; */
  font-family: inherit;
  background: #fbf7f2;
  overflow: hidden;
}

.lcw-viewport {
  overflow: hidden;
  width: 100%;
}

.lcw-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.lcw-card {
  flex: 0 0 calc((100% - 96px) / 4.18);
  width: calc((100% - 96px) / 4.18);
  flex-shrink: 0;
  text-decoration: none;
  display: block;
  background: #efe7dc;
  border: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease;
}

.lcw-card:hover {
  transform: none;
  text-decoration: none;
}

.lcw-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efe7dc;
  display: block;
  position: relative;
}

.lcw-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #d5ad79 0%, #5f3a24 100%);
}

.lcw-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.lcw-img-wrap:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(
    180deg,
    rgba(20, 11, 6, 0) 0%,
    rgba(20, 11, 6, 0.62) 100%
  );
  pointer-events: none;
}

.lcw-card:hover .lcw-img-wrap img {
  transform: scale(1.025);
}

.lcw-label {
  position: absolute;
  left: clamp(20px, 1.3vw, 30px);
  right: 18px;
  bottom: clamp(20px, 1.35vw, 28px);
  padding: 0;
  text-align: left;
  z-index: 1;
}

.lcw-name {
  display: block;
  font-size: clamp(14px, 1vw, 20px);
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .lcw-wrap {
    padding-top: 24px;
  }

  .lcw-track {
    gap: 20px;
  }

  .lcw-card {
    flex-basis: calc((100% - 60px) / 3.18);
    width: calc((100% - 60px) / 3.18);
  }
}

@media (max-width: 600px) {
  .lcw-wrap {
    padding-inline: 16px;
    padding-bottom: 32px;
  }

  .lcw-track {
    gap: 16px;
  }

  .lcw-card {
    flex-basis: calc((100% - 16px) / 1.18);
    width: calc((100% - 16px) / 1.18);
  }

  .lcw-name {
    font-size: 14px;
    letter-spacing: 0.11em;
  }
}
