/* 8bFocus Card Stack Slider – stacked book-style cards */

/* Section background */
.fcs-section {
  padding: 40px 0;
  background: #f6efe7; /* same warm beige vibe */
  display: flex;
  justify-content: center;
}

/* Stack container */
.fcs-stack {
  position: relative;
  width: 260px;
  height: 340px;
  cursor: grab;
}

/* Single card – background image */
.fcs-card {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.45s ease;
  will-change: transform, opacity;
}

/* Hint text */
.fcs-hint {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(80,60,55,0.65);
  pointer-events: none;
}

/* Slight active feel when grabbing */
.fcs-stack:active {
  cursor: grabbing;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .fcs-stack {
    width: 230px;
    height: 310px;
  }
}
