/* ---- Header / identity ---- */

.eyebrow {
  color: var(--ink-muted);
  font-size: var(--step-md);
  margin: var(--space-1) 0 0;
}

address.contact-list {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: var(--step-xs);
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-note {
  color: var(--ink-muted);
}

/* ---- Actions (theme toggle + print) ---- */

.actions {
  display: flex;
  gap: var(--space-2);
}

.btn {
  appearance: none;
  border: 1px solid var(--pale);
  background: var(--surface);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: var(--step-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn svg {
  width: 1em;
  height: 1em;
}

/* ---- Unordered sets: skills, languages, interests ---- */

.chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.chip {
  font-size: var(--step-xs);
  background: var(--pale);
  color: var(--navy);
  padding: 0.2em 0.65em;
  border-radius: 999px;
}

.skill-group {
  margin: 0 0 var(--space-2);
}

.skill-group:last-child {
  margin-bottom: 0;
}

.skill-group-label {
  display: block;
  font-size: var(--step-xs);
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: var(--space-1);
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: var(--step-xs);
}

.plain-list .level {
  color: var(--ink-muted);
}

/* ---- Timeline: the one signature element ---- */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-inline-start: 1px solid var(--pale);
}

.timeline-entry {
  position: relative;
  padding: 0 0 var(--space-4) var(--space-4);
  break-inside: avoid;
}

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

.timeline-entry::before {
  content: "";
  position: absolute;
  left: -0.313rem;
  top: 0.4em;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--paper);
}

.timeline-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2);
  break-after: avoid;
}

.timeline-org {
  font-weight: 600;
}

.timeline-dates {
  color: var(--ink-muted);
  font-size: var(--step-xs);
}

.timeline-desc {
  margin-top: var(--space-1);
  color: var(--navy);
}

/* ---- Certificates ---- */

.cert-list {
  display: grid;
  gap: var(--space-3);
}

.cert {
  border: 1px solid var(--pale);
  border-radius: var(--radius);
  padding: var(--space-3);
  break-inside: avoid;
}

.cert-issuer {
  color: var(--ink-muted);
  font-size: var(--step-xs);
  margin: 0 0 var(--space-1);
}
