/* about.css */

.story-quote {
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  font-weight: 800; line-height: 1.3; color: var(--kkf-ink);
  border-left: 4px solid var(--kkf-sky); padding-left: 1.4rem;
}
.value-statement {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7; color: rgba(255,255,255,.82); max-width: 68ch;
}
.value-statement b { color: var(--kkf-sky-light); }
.leader-card { text-align: center; }
.leader-card .ph { margin-bottom: 1rem; }
.leader-card h3 { font-size: 1.05rem; }
.leader-card p { font-size: .85rem; }

/* Section & Container Layout */
.section {
  padding: 4rem 1.5rem;
}

.container.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .container.split {
    grid-template-columns: 1fr 1fr;
  }
}

/* Image Wrapper and Styling */
.ph {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.ph--tall {
  aspect-ratio: 3 / 4;
}

.ph__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Typography & Content Styles */
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0;
  color: #111;
}

.story-lead {
  margin-top: 1rem;
  line-height: 1.6;
}

.story-text {
  margin-top: 0.9rem;
  line-height: 1.6;
}

.story-quote {
  margin-top: 1.6rem;
  padding-left: 1rem;
  border-left: 3px solid #333;
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
}