/* =========================================================================
   Story (uratarina) — yksittäisen henkilön tarinasivu
   ========================================================================= */

.story-page { background: #fff; }

/* Hero */
.story-hero {
  position: relative;
  background: var(--gradient-aurora);
  color: #fff;
  padding: 140px 56px 80px;
  overflow: hidden;
}
.story-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 80% 20%, rgba(117,250,199,0.18), transparent 60%);
}
.story-hero__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.story-hero__crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.62);
  margin-bottom: 18px;
}
.story-hero__crumbs a { color: rgba(255,255,255,0.62); text-decoration: none; border: 0; }
.story-hero__crumbs a:hover { color: #fff; }
.story-hero__crumbs i { width: 14px; height: 14px; }

.story-hero__chapter {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--softera-mint); margin-bottom: 18px;
}
.story-hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 60px; letter-spacing: -0.02em; line-height: 1.05;
  color: #fff; margin: 0 0 32px; max-width: 22ch;
}
.story-hero__by {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px;
}
.story-hero__by-text { display: flex; flex-direction: column; }
.story-hero__by-name { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: #fff; }
.story-hero__by-role { font-size: 14px; color: rgba(255,255,255,0.7); }

/* Body */
.story-body { padding: 80px 56px 100px; }
.story-body__inner {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}
.story-body p {
  font-family: var(--font-body);
  font-size: 18px; line-height: 1.7;
  color: var(--ink); margin: 0;
}
.story-body p strong { color: var(--softera-deep); font-weight: 600; }
.story-body__lead {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; line-height: 1.5;
  color: var(--ink); letter-spacing: -0.005em;
  margin: 0 0 8px;
}
.story-body__h {
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.015em;
  color: var(--ink); margin: 24px 0 0;
}
.story-pull {
  margin: 16px 0;
  padding: 24px 0 24px 28px;
  border-left: 3px solid var(--softera-cyan);
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; line-height: 1.35; letter-spacing: -0.01em;
  color: var(--softera-deep);
}
.story-pull--big {
  font-size: 32px;
  padding: 32px 0 32px 32px;
}

/* Key facts */
.story-facts {
  margin: 24px 0;
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.story-fact__lbl {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 6px;
}
.story-fact__val {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
  line-height: 1.2;
}

/* Lue lisää tarinoita */
.story-more { background: var(--bg-soft); padding: 80px 56px; }
.story-more__inner { max-width: 1280px; margin: 0 auto; }
.story-more__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px; gap: 24px;
}
.story-more__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; letter-spacing: -0.015em; color: var(--ink); margin: 0;
}
.story-more__back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--softera-blue); font-weight: 500; font-size: 15px;
  text-decoration: none; border: 0;
}
.story-more__back i { width: 16px; height: 16px; }
.story-more__back:hover i { transform: translateX(-4px); transition: transform 220ms var(--ease-out); }

.story-more__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* Mini CTA */
.story-cta {
  background: var(--softera-deep); color: #fff;
  padding: 80px 56px;
  position: relative; overflow: hidden;
}
.story-cta::before {
  content: ""; position: absolute; inset: -10% -10% auto auto; width: 50%; height: 140%;
  background: radial-gradient(closest-side, rgba(117,250,199,0.18), transparent 70%);
  pointer-events: none;
}
.story-cta__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.story-cta__h {
  font-family: var(--font-display); font-weight: 500;
  font-size: 40px; letter-spacing: -0.02em; line-height: 1.1;
  color: #fff; margin: 0 0 14px; max-width: 18ch;
}
.story-cta__p {
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.78); margin: 0;
  max-width: 50ch;
}
.story-cta__actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.story-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--softera-mint); color: var(--softera-deep);
  font-weight: 500; padding: 12px 24px; border-radius: 999px;
  text-decoration: none; border: 0; font-size: 15px;
  transition: filter 220ms var(--ease-out);
}
.story-cta__btn:hover { filter: brightness(0.92); }
.story-cta__btn i { width: 16px; height: 16px; }
.story-cta__mail {
  font-family: var(--font-mono); font-size: 13px;
  color: rgba(255,255,255,0.6);
}
