.story-card {
  grid-template-columns: 340px 1fr;
}

.story-identity {
  background: #222;
  color: #fff;
  padding: 2.6rem 2.2rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.story-identity .portrait-placeholder {
  min-height: 330px;
}

.story-identity > p {
  color: #aaa;
  font-size: .78rem;
  letter-spacing: .08em;
  margin: auto 0 .55rem;
}

.story-identity > strong {
  color: var(--yellow);
  font-size: 1.35rem;
  line-height: 1.5;
}

.story-copy {
  font-size: 1rem;
}

.story-lead {
  font-size: 1.22rem;
  line-height: 1.75;
  font-weight: 800;
  margin: 0 0 2.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.story-chapter {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  margin: 0 0 1.8rem;
}

.story-chapter > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
}

.story-chapter h3 {
  font-size: 1.08rem;
  margin: .15rem 0 .4rem;
}

.story-chapter p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-right: 0;
}

.about-values article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  background: #fff;
}

.about-values b {
  color: #927100;
  font-size: .78rem;
}

.about-values h3 {
  font-size: 1.05rem;
  margin: 0 0 .3rem;
}

.about-values p {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .story-card { grid-template-columns: 1fr; }
  .story-identity { min-height: 390px; }
  .story-identity .portrait-placeholder { min-height: 260px; }
  .about-values {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }
  .about-values article { border-bottom: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .story-identity { padding: 2rem; }
  .story-copy { padding: 1.65rem; }
  .story-lead { font-size: 1.08rem; }
  .story-chapter {
    grid-template-columns: 36px 1fr;
    gap: .75rem;
  }
  .story-chapter > span {
    width: 32px;
    height: 32px;
  }
  .about-values article { padding: 1.25rem; }
}
