/* Introduction / Profil */
.about-intro {
  padding: 0;
  margin-bottom: 3rem;
}

.about-intro .badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.intro-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--paper) 0%, rgba(15, 118, 110, 0.02) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.profile-photo-wrapper {
  flex-shrink: 0;
}

.profile-frame {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(15, 118, 110, 0.02));
  display: grid;
  place-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  border-radius: inherit;
}

.intro-text h1 {
  margin: 0 0 0.3rem;
  font-size: 2rem;
}

.role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.description {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 65ch;
}

.quick-facts {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.quick-facts li {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-facts strong {
  color: var(--ink);
  font-weight: 600;
}

/* Parcours Timeline */
.parcours-section {
  margin-bottom: 3rem;
  padding: 0;
}

.parcours-section .badge {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.parcours-section h2 {
  margin-top: 0;
}

.timeline {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.timeline-marker {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--primary);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 6px);
  width: 2px;
  height: 2rem;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 1px;
}

.timeline-content {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-left: 2px solid var(--line);
  padding-left: 1rem;
}

.timeline-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.timeline-content h3 {
  margin: 0.4rem 0 0.2rem;
  font-size: 0.95rem;
}

.timeline-location {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.timeline-content p {
  font-size: 0.9rem;
  margin: 0;
}

/* Expériences */
.experience-wrap {
  margin-bottom: 2rem;
  padding: 0;
}

.experience-wrap .badge {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.section-intro {
  font-size: 0.95rem;
  max-width: 70ch;
  margin-bottom: 1.5rem;
}

.experience-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.experience-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.experience-card .badge {
  align-self: start;
}

.experience-card h3 {
  margin: 0.2rem 0;
  font-size: 1rem;
  color: var(--ink);
}

.experience-card > p:not(.timeline-location) {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.experience-points {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.experience-points li {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.experience-points li::before {
  content: "→";
  color: var(--primary);
  font-weight: 600;
}

.badge-secondary {
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.2);
}

@media (max-width: 720px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-photo-wrapper {
    align-self: start;
  }
}
