/* about.css */

.story-quote {
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--kkf-ink, #111);
  border-left: 4px solid var(--kkf-sky, #33168f45);
  padding-left: 1.4rem;
  margin-top: 1.6rem;
  font-style: italic;
}

.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, #51a8f5); 
}

.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;
  }
}

/* Clean Image Container (No Grid Lines, Seamless Frame) */
.ph {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius, 12px);
  background: transparent;
  border: none;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

.ph--tall {
  aspect-ratio: 3 / 4;
  max-height: 620px;
}

.ph--round {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.ph__img,
.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.ph:hover .ph__img,
.ph:hover img {
  transform: scale(1.03);
}

/* 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;
}