.wl-figma-showcase,
.wl-figma-showcase *,
.wl-figma-showcase *::before,
.wl-figma-showcase *::after {
  box-sizing: border-box;
}

.wl-figma-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  gap: clamp(24px, 4vw, 50px);
  position: relative;
  width: 100%;
  max-width: 1190px;
  margin: 80px auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Header Text */
.wl-showcase-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  width: 100%;
  max-width: 787px;
  text-align: center;
}

.wl-showcase-title {
  width: 100%;
  margin: 0;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.25;
  color: #051D38;
}

.wl-showcase-subtitle {
  width: 100%;
  max-width: 721px;
  margin: 0;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.4;
  color: #6B7280;
}

/* Stage Container */
.wl-showcase-stage {
  position: relative;
  width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  background: #EAF4F9;
  border: 1px solid #DCEAF1;
  padding: clamp(20px, 5vw, 60px) clamp(10px, 3vw, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background Guidelines */
.wl-stage-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(220, 234, 241, 0.8);
  pointer-events: none;
}
.wl-stage-line--left { left: 28%; }
.wl-stage-line--right { right: 28%; }

/* Dashboard Stack */
.wl-dashboard-stack {
  position: relative;
  width: 100%;
  max-width: 877px;
  aspect-ratio: 877 / 429;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Back Dashboard Layer (Shifted Left) */
.wl-dashboard-card--back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #C9C9C9;
  box-shadow: 10px 19px 40.8px rgba(0, 0, 0, 0.12);
  border-radius: clamp(10px, 1.8vw, 20px);
  transform: matrix(1, 0, 0.19, 0.98, 0, 0) translate(-2.2%, 2.5%);
  opacity: 0.7;
}

/* Front Dashboard Layer */
.wl-dashboard-card--front {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #C9C9C9;
  box-shadow: 10px 19px 40.8px rgba(0, 0, 0, 0.15);
  border-radius: clamp(10px, 1.8vw, 20px);
  transform: matrix(1, 0, 0.19, 0.98, 0, 0) translate(1%, -1.2%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Image inside Front Card */
.wl-dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play Button Overlay */
.wl-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(44px, 7vw, 80px);
  height: clamp(44px, 7vw, 80px);
  border: none;
  background: #333333;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 10;
}

.wl-play-button:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #1a1a1a;
}

.wl-play-button__icon {
  width: 25%;
  height: 25%;
  margin-left: 3%;
  fill: #FFFFFF;
}

/* Mobile Tweak: Reduce skew angle on narrow screens for better readability */
@media (max-width: 576px) {
  .wl-dashboard-card--back {
    transform: matrix(1, 0, 0.08, 0.99, 0, 0) translate(-3%, 3%);
  }
  .wl-dashboard-card--front {
    transform: matrix(1, 0, 0.08, 0.99, 0, 0) translate(0%, 0%);
  }
}