/* =============================================================
   arbusteo — section « Notre histoire » (teaser sur la home)
   Niveau court qui incarne le « nous » et renvoie vers genese.html.
   S'appuie sur site.css (tokens, .h2, .eyebrow, .leaf…).
   ============================================================= */

.histoire-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.histoire-text .h2 { text-align: left; margin-top: 14px; }
.histoire-text .lead { margin-top: 18px; max-width: 50ch; }

.histoire-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-weight: 700; font-size: 16px; color: var(--green-deep);
  padding-bottom: 3px; border-bottom: 2px solid var(--olive);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.histoire-link .material-symbols-outlined { font-size: 20px; }
.histoire-link:hover { gap: 12px; color: var(--green-title); }

.histoire-people { display: flex; flex-direction: column; gap: 12px; }
.hp-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-card); box-shadow: var(--shadow-2);
  padding: 22px 24px;
}
.hp-ico {
  width: 52px; height: 52px; flex: none; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--olive-light); color: var(--green-deep);
}
.hp-card.clay .hp-ico { background: var(--ocre-bg); color: var(--ocre); }
.hp-ico .material-symbols-outlined { font-size: 28px; }
.hp-name { display: block; font-size: 20px; font-weight: 600; letter-spacing: -.3px; color: var(--green-title); }
.hp-role { display: block; margin-top: 5px; font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }
.hp-join {
  align-self: center; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; margin: -4px auto; z-index: 1;
  background: var(--green-deep); color: var(--cream-light);
  box-shadow: var(--shadow-2);
}
.hp-join .material-symbols-outlined { font-size: 20px; }

@media (max-width: 880px) {
  .histoire-grid { grid-template-columns: 1fr; }
  .histoire-text .lead { max-width: none; }
}
