/* COMPLETE about.css - Mobile spacing FIXED, timeline SAFE */
html, body.about-page {
  margin: 0 !important;
  padding: 0 !important;
}

.about-page {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Segoe UI", sans-serif;
}

.about-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

.about-main {
  color: #1c2130;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.4rem;
}

.about-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff8c42;
  margin: 0 0 0.75rem;
}

.about-vision {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  color: #ff8c42;
}

.about-sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
}

.about-hero-photo {
  display: flex;
  justify-content: flex-end;
}

.about-photo-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 140deg, #ff8c42, #39bcff, #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #111320;
}

.about-body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #0b1630;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
  gap: 2.2rem;
}

.about-body h2 {
  margin-top: 0;
  color: #ff8c42;
}

.about-body p {
  margin-bottom: 0.9rem;
}

.about-side {
  border-left: 1px solid #e1e4f0;
  padding-left: 1.5rem;
}

.about-side h3 {
  margin-top: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ff8c42;
}

.about-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-side li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.about-side strong {
  font-weight: 600;
}

.about-resume {
  margin-top: 1.5rem;
}

.about-resume-note {
  font-size: 0.85rem;
  color: #51607c;
}

/* MOBILE FIXES - Zero top spacing, timeline preserved */
@media (max-width: 900px) {
  html, body {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .about-page {
    background: #ffffff;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .about-shell {
    padding: 0 1.25rem 2.5rem !important;
    margin-top: 0 !important;
  }

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

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

  .about-main .about-body,
  .about-main .about-body p,
  .about-main .about-side li {
    color: #0b1630;
  }

  .about-main .about-sub {
    color: #666b80;
  }

  .about-side {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e1e4f0;
    padding-top: 1.5rem;
  }

  .about-main .about-resume .btn.btn-primary {
    color: #000000;
  }
}
