/* wwwroot/css/about.css */

.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-card);
  border-bottom: 0.5px solid var(--border-color);
  padding-top: 64px;
}
.about-hero__inner { padding: var(--sp-16) var(--sp-8); }
.about-hero__label { margin-bottom: var(--sp-4); }
.about-hero__heading { margin-bottom: var(--sp-4); }

/* STORY */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.story__heading { margin-bottom: var(--sp-6); }
.story__body {
  font-size: var(--text-md);
  color: var(--c-storm-2);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

/* TIMELINE */
.timeline { position: relative; padding-left: var(--sp-8); }
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--c-storm-1);
}
.timeline-item { position: relative; padding-bottom: var(--sp-8); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--sp-8) - 4px);
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-core);
  border: 2px solid var(--c-navy);
}
.timeline-year {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-ice);
  letter-spacing: 1px;
  margin-bottom: var(--sp-2);
}
.timeline-text {
  font-size: var(--text-base);
  color: var(--c-storm-2);
  line-height: 1.6;
}

/* TEAM */
.team-header { margin-bottom: var(--sp-12); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1.5px solid var(--c-storm-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--c-ice);
  flex-shrink: 0;
}
.team-name { font-size: var(--text-md); font-weight: 500; color: var(--text-primary); }
.team-role { font-size: var(--text-sm); color: var(--text-muted); }
.team-bio { font-size: var(--text-sm); color: var(--text-body); line-height: 1.6; }

/* JORDAN */
.jordan-section { text-align: center; }
.jordan-icon { margin: 0 auto var(--sp-6); }
.jordan-heading { margin-bottom: var(--sp-4); }
.jordan-body { max-width: 600px; margin: 0 auto; }

/* VALUES */
.values-header { margin-bottom: var(--sp-12); }
.value-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.value-icon { margin-bottom: var(--sp-2); }
.value-title { font-size: var(--text-xl); font-weight: 500; color: var(--c-ice); }
.value-body { font-size: var(--text-base); color: var(--c-storm-2); line-height: 1.7; }

@media (max-width: 1024px) {
  .story-layout { grid-template-columns: 1fr; gap: var(--sp-8); }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
}
