/* =========================================
   MKMH MEDIA — About Page Styles
   ========================================= */

/* Story Grid */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

/* Timeline */
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: var(--space-4);
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  padding: 0 0 var(--space-8) var(--space-6);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-main);
  border: 2px solid var(--bg-base);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-1);
}

.timeline-content h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.timeline-content p { font-size: 0.9rem; }

/* Value Cards */
.value-card { text-align: left; }
.value-card h3 { margin-bottom: var(--space-3); font-size: 1.2rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.team-card h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.team-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
}

.team-social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  width: 100%;
  justify-content: center;
}

.team-social a {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.team-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* Stats bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.stat-divider-v {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { gap: var(--space-6); }
  .stat-divider-v { display: none; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
