/* ===== ABOUT PAGE ===== */

.bio__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: start;
}

.bio__img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.bio__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.bio__credentials {
  margin-top: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.credential {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-divider);
}

.credential:last-child { border-bottom: none; }

.credential__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.credential__value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.bio__text h2 {
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-8);
}

.bio__body p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.bio__body p strong {
  color: var(--color-text);
  font-weight: 600;
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.approach__item h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.approach__item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (max-width: 900px) {
  .bio__grid {
    grid-template-columns: 1fr;
  }

  .bio__img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .approach__grid {
    grid-template-columns: 1fr;
  }
}
