/* ==========================================================================
   Storytelling City — page-unique styles
   ========================================================================== */

/* Centered intro */
.sc-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Gradient CTA button (matches design) */
.btn-grad {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 26px rgba(91, 43, 224, 0.3);
}
.btn-grad:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Section title overlap */
.sc-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  max-width: 360px;
  margin-bottom: -2.5rem;
  position: relative;
  z-index: 3;
  background: var(--white);
  padding: 0.5rem 1.25rem 0.75rem 0;
}

/* Hero feature image card */
.sc-hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sc-hero-card img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}
.sc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 40, 0) 35%, rgba(10, 12, 40, 0.85) 100%);
}
.sc-hero-text {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.75rem;
  color: #fff;
  max-width: 640px;
}
.sc-hero-text h3 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.sc-hero-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
}
.sc-hero-go {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

/* Narrative cards */
.sc-card .thumb {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: var(--radius);
}
.sc-card h3 {
  font-size: 1.05rem;
  margin: 0.9rem 0 0.3rem;
}
.sc-card p {
  font-size: 0.82rem;
  margin: 0;
}

@media (max-width: 575.98px) {
  .sc-section-title {
    margin-bottom: 1rem;
    padding: 0;
    background: transparent;
  }
  .sc-hero-text { left: 1.1rem; right: 1.1rem; bottom: 1rem; }
}
