/* ═══════════════════════════════════════════════════════════════
   15 · STORY / ABOUT
   Editorial split layout with overlapping images + badge
   ═══════════════════════════════════════════════════════════════ */

.story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}

.story__visual__main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

.story__visual__sub {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border: 8px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.story__visual__badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--navy-800);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.story__visual__badge__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.story__visual__badge__lbl {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}

.story__sig {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.story__sig__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--gold-500);
  flex-shrink: 0;
}
.story__sig__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--navy-800);
  font-weight: 500;
}
.story__sig__title {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
