/* ── resume.css ─────────────────────────────────────────────
   Resume-specific components: entries, skills grid.
   All tokens from base.css.
   ─────────────────────────────────────────────────────────── */

/* Download link (inline, in header cell) */
.resume-download {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 3px;
  padding: 4px 12px;
  transition: background 0.15s;
}
.resume-download:hover {
  background: rgba(243, 118, 38, 0.08);
  text-decoration: none;
}

/* ── Resume entry (education + experience) ── */
.resume-entry {
  padding-bottom: var(--sp-3);
}
.resume-entry--spaced {
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}

.resume-entry__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
  margin-bottom: 2px;
}
.resume-entry__org {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-primary);
}
.resume-entry__date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.resume-entry__sub {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.resume-entry__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--syn-fn);
}
.resume-entry__location {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.resume-entry__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.resume-entry__bullets li {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-dim);
  line-height: 1.7;
  padding-left: var(--sp-3);
  position: relative;
}
.resume-entry__bullets li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* Summary paragraph */
.resume-summary {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.75;
  color: var(--text-dim);
}

/* Project entry tech tag (replaces date slot) */
.resume-entry__tags {
  color: var(--syn-fn);
  font-size: 10px;
}

/* Project links below bullets */
.resume-entry__links {
  margin-top: var(--sp-1);
}
.resume-entry__link {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
}
.resume-entry__link:hover { text-decoration: underline; }

/* ── Skills grid ── */
.resume-skills {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.resume-skills__row {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
}
