#story {
  background: var(--cream);
  color: var(--ink);
  padding: 7rem 0;
}

#story .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#story .section-title {
  color: var(--ink);
  text-align: center;
  margin-bottom: 3.5rem;
}

.story-body {
  max-width: 680px;
  width: 100%;
}

.story-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.credentials {
  max-width: 680px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.credential-item {
  background: var(--navy);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}

.credential-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.credential-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-soft);
  line-height: 1.4;
}

.story-cta {
  max-width: 680px;
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(11, 26, 50, 0.12);
}

.story-cta p {
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

.story-cta .fine-print {
  display: block;
  margin-top: 0.9rem;
  color: var(--ink);
}

@media (max-width: 600px) {
  #story {
    padding: 5rem 0;
  }

  .credentials {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .credential-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
  }

  .credential-num {
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .story-body p {
    font-size: 1rem;
  }
}
