/* =============================
   About Page Specific Styles
   ============================= */

.about-hero {
  padding-top: calc(var(--header-h) + 28px);
  padding-bottom: 26px;
}

.about-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.stat-card {
  padding: 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.stat-card__num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-card__label {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 18px;
  padding-left: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(0, 0, 0, 0.08);
}

.timeline-item {
  position: relative;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.18);
  border: 2px solid var(--brand-primary);
}

.timeline-item__time {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.timeline-item__title {
  font-size: 18px;
  font-weight: 750;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.timeline-item__desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.value-card {
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-card__title {
  font-size: 18px;
  font-weight: 750;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.value-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.team-card {
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 102, 255, 0.3);
}

.team-card__avatar {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: 16px;
  font-weight: 750;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.team-card__bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

