/* Override hero padding for about page */
.hero { padding: 7rem 0 4rem; }

/* ── Avatar ── */
.avatar-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(255,140,0,.4);
  background: rgba(255,140,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--brand);
  flex-shrink: 0;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: .55rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,140,0,.25);
}

.tl-item {
  position: relative;
  margin-bottom: 2rem;
}

.tl-dot {
  position: absolute;
  left: -1.73rem;
  top: .35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid var(--bs-body-bg);
  box-shadow: 0 0 0 3px rgba(255,140,0,.25);
}

.tl-years {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .25rem;
}

.tl-role {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .2rem;
}

.tl-company {
  font-size: .88rem;
  color: var(--bs-secondary-color);
  margin-bottom: .4rem;
}

.tl-desc {
  font-size: .9rem;
  color: var(--bs-secondary-color);
}

/* ── Skill cards ── */
.skill-card {
  border: 1px solid var(--soft-border);
  border-radius: 1.5rem;
  box-shadow: var(--soft-shadow);
  background: var(--bs-body-bg);
  padding: 1.5rem;
}

.skill-card h5 {
  font-weight: 800;
  font-size: 1rem;
}

/* ── Stats ── */
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
}

.stat-label {
  font-size: .82rem;
  color: var(--bs-secondary-color);
  margin-top: .2rem;
}

/* ── Pain line ── */
.pain-line {
  font-size: .92rem;
  font-style: italic;
  color: var(--bs-secondary-color);
  border-left: 3px solid rgba(255,140,0,.4);
  padding-left: .75rem;
  background-color: rgba(255, 140, 0, 0.36);
}

/* ── Blog pills ── */
.blog-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(255,140,0,.1);
  border: 1px solid rgba(255,140,0,.25);
  padding: .35rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background .18s;
}

.blog-pill:hover {
  background: rgba(255,140,0,.2);
  color: var(--brand);
}
