.story {
  padding: 100px 32px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.st-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 26px 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.st-card:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--ink); }
.st-card::before {
  content: '';
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 6px;
  background: var(--c);
  border-radius: 0 6px 6px 0;
}

.st-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  padding-left: 14px;
}
.st-co {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
}
.st-formerly {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.st-pt b { font-weight: 700; color: var(--ink); }
.st-when {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
}
.st-where {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
}
.st-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--c);
  padding-left: 14px;
  margin-bottom: 14px;
}
.st-pts {
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-pt {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  padding-left: 20px;
}
.st-pt::before {
  content: '▸';
  color: var(--c);
  position: absolute;
  left: 0;
  top: 0;
}
