/* ABOUT PAGE STYLING */

.about-hero {
  padding-top: 4rem;
}

.about-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-hero-copy h1 {
  margin: 0;
  font-size: 2.6rem;
}

.about-tagline {
  font-size: 1.1rem;
  color: var(--accent-strong);
  margin: 0.5rem 0;
}

.about-subtext {
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.thinkpad-img {
  width: 340px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: var(--shadow-soft);
}

/* TEAM */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-card {
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.95);
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 0.8rem;
  background: var(--bg-alt);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.user-avatar {
  background: url('yourphoto.jpg') center/cover no-repeat;
}

.thinkpad-avatar {
  background: url('thinkpad.jpg') center/cover no-repeat;
}

.team-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ORIGIN STORY GRID */

.origin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

/* TIMELINE */

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.timeline-item {
  border-left: 2px solid var(--accent-strong);
  padding-left: 1rem;
}

.timeline-year {
  font-size: 0.85rem;
  color: var(--accent-strong);
  letter-spacing: 0.05em;
}

/* SERIOUS CARDS */

.serious-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.serious-card {
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: rgba(15, 23, 42, 0.9);
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .origin-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .serious-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .serious-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
