/* about.css — story, values, timeline, team */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.value-card { height: 100%; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }

/* Timeline */
.timeline { position: relative; max-width: 760px; margin-inline: auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--primary-100);
}
.timeline-item { position: relative; padding-left: 44px; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--primary-100);
}
.timeline-year {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.timeline-item h3 { font-size: 1.05rem; margin: 4px 0 6px; }
.timeline-item p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

/* Team */
.team-card { text-align: center; }
.team-avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--primary), var(--tertiary));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
}
.team-card h3 { font-size: 1.02rem; margin-bottom: 2px; }
.team-role { color: var(--primary); font-size: 0.86rem; font-weight: 600; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; margin-top: 10px; }

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 32px; }
}
