/* ═══════════════════════════════════════════════════════════
   LUPIN SHOWCASE CARD v3.0
   Fixed width × height. Image as background-image cover.
   Same approach as Lupin Journey Card.
   ═══════════════════════════════════════════════════════════ */

.lscd {
  position: relative;
  display: block;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  /* Image loads as background, covers full card */
  background-color: #F7F4EE;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover zoom on the background image (via card scale) */
.lscd-zoom-on:hover {
  /* Subtle scale-up effect creates "zoom" without messing with image element */
  transform: scale(1.02);
}

/* Gradient overlay */
.lscd-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
}

/* Content at bottom */
.lscd-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.lscd-title {
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.2;
  letter-spacing: -0.2px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}
.lscd-subtitle {
  color: #E5DDD0;
  margin: 0 0 14px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.lscd-meta {
  color: #fff;
  margin: 0 0 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.lscd-cta {
  display: inline-block;
  margin-top: auto;
  color: #fff;
}

/* Badges */
.lscd-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 4;
  pointer-events: none;
}
.lscd-badge {
  padding: 6px 11px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  pointer-events: auto;
}
.lscd-badge-1 {
  background: rgba(38, 70, 83, 0.92);
  color: #fff;
}
.lscd-badge-2 {
  background: rgba(185, 151, 91, 0.92);
  color: #fff;
}

/* Mobile */
@media (max-width: 767px) {
  .lscd-content { padding: 18px; }
  .lscd-badges {
    top: 10px;
    left: 10px;
    right: 10px;
  }
  .lscd-badge {
    padding: 5px 9px;
    font-size: 9px;
    letter-spacing: 1px;
  }
}
