.story-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.story-stk {
  position: sticky;
  top: 180px;
  height: fit-content;
}

.story-h {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}

.story-d {
  font-size: var(--body-lg);
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  max-width: 440px;
}

.story-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-c {
  background: rgba(13, 31, 28, .6);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 2.5rem;
  opacity: .15;
  transform: translateY(30px);
  filter: blur(4px);
  transition: all .7s cubic-bezier(.16, 1, .3, 1);
}

.story-c.on {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.story-c-hl {
  border-color: rgba(29, 124, 110, .25);
  background: rgba(29, 124, 110, .08);
}

.story-card-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: #1D7C6E;
  margin-bottom: 1rem;
}

.story-c h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .75rem;
}

.story-c p {
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
  font-size: .95rem;
}
