/* =============================================================================
   Feature Showcase Block
   A block with main image, bottom-left clickable thumbnails, bottom-right text
   ============================================================================= */

.feature-showcase-block {
  position: relative;
  background: #0f1115;
  color: #ffffff;
}

.feature-showcase-block .fs-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ---- Main Image Area ---- */
.feature-showcase-block .fs-image-wrap {
  position: relative;
  width: 100%;
  background: #1a1c23;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-showcase-block .fs-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.45s ease;
}

.feature-showcase-block .fs-main-image.fs-fade {
  opacity: 0;
}

/* ---- Bottom Bar: Clickables + Text ---- */
.feature-showcase-block .fs-bottom-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 180px;
}

/* Left side — clickable items */
.feature-showcase-block .fs-clickables {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.5rem;
  gap: 0.75rem;
  background: #16181d;
}

.feature-showcase-block .fs-clickable {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  width: fit-content;
  line-height: 1.3;
}

.feature-showcase-block .fs-clickable:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
}

.feature-showcase-block .fs-clickable.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.feature-showcase-block .fs-clickable .fs-clickable-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.4;
  transition: opacity 0.25s ease;
}

.feature-showcase-block .fs-clickable.is-active .fs-clickable-dot {
  opacity: 1;
}

/* Right side — text content */
.feature-showcase-block .fs-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.5rem;
  background: #0f1115;
}

.feature-showcase-block .fs-text-desc {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.7;
  color: #9ca3af;
  max-width: 520px;
}

.feature-showcase-block .fs-text-desc p {
  margin-bottom: 0.5rem;
}

.feature-showcase-block .fs-text-desc p:last-child {
  margin-bottom: 0;
}

/* ---- Optional heading / subheading ---- */
.feature-showcase-block .fs-heading {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  text-align: center;
}

.feature-showcase-block .fs-subheading {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: center;
  opacity: 0.7;
}

/* ---- Buttons variant ---- */
.feature-showcase-block[data-variant="buttons"] .fs-clickables {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .feature-showcase-block .fs-bottom-bar {
    grid-template-columns: 1fr;
  }

  .feature-showcase-block .fs-clickables {
    padding: 1.25rem 1.5rem;
  }

  .feature-showcase-block .fs-text {
    padding: 1.25rem 1.5rem;
  }

  .feature-showcase-block .fs-image-wrap {
    aspect-ratio: 4 / 3;
  }
}
