/* ==========================================================================
   ABOUT.CSS — page à propos
   ========================================================================== */

.story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  align-items: center;
}

.story__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.story__text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

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

.quote-banner {
  padding: var(--space-xl) 24px;
}

.quote-banner__text {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.35;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.approach__step {
  border-top: 2px solid var(--color-primary);
  padding-top: var(--space-sm);
}

.approach__num {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.approach__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 10px;
}

.approach__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.team__member img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: var(--space-sm);
}

.team__role {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.team__dept {
  font-size: 13px;
  color: var(--color-text-faint);
}

.office-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.office-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
