/* ─────────────────────────────────────────────────────────
   resume.css — resume page components

   Linked from resume.html AFTER site.css. Carries the
   resume-specific patterns:

   - .resume-contact   contact line in the hero (mailto + LI + GH)
   - .entry            jobs (Experience) and projects (Projects)
   - .skill-group      labeled inline list (Expertise + Speaking)
   - .print-hint       small "Press Cmd+P to print" mono note

   Anything reused outside the resume (hero, section-head, list,
   tag, press-strip, footer reach/stamp) lives in site.css.
   ───────────────────────────────────────────────────────── */

/* ── resume hero contact line ──────────────────────────── */

.resume-contact {
  margin-top: 16px;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
}

.resume-contact a {
  color: var(--ink);
  border-bottom: 1px solid var(--border-strong);
}

.resume-contact a:hover {
  color: var(--ink-strong);
  border-bottom-color: var(--ink-strong);
}

.resume-contact > span:not(:last-child)::after {
  content: " · ";
  color: var(--border-strong);
  margin: 0 0.3ch;
}

/* ── entry rows: Experience, Projects, Education ───────── */

.entry {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.entry:last-of-type {
  border-bottom: none;
}

.entry-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.entry-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-strong);
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.entry-dates {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.entry-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.entry-bullets {
  list-style: none;
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.entry-bullets > li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.entry-bullets > li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--border-strong);
  font-size: 18px;
  line-height: 1;
}

.entry-bullets > li:last-child {
  margin-bottom: 0;
}

.entry-link {
  margin-top: 12px;
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entry-link a {
  color: var(--muted);
  border-bottom: none;
}

.entry-link a:hover {
  color: var(--ink-strong);
}

/* ── skill groups: labeled inline middle-dot list ──────── */

.skill-group {
  margin-top: 24px;
}

.skill-group:first-of-type {
  margin-top: 16px;
}

.skill-group-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.skill-group-items {
  list-style: none;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

.skill-group-items li {
  display: inline;
}

.skill-group-items li:not(:last-child)::after {
  content: " · ";
  margin: 0 0.3ch;
  color: var(--border-strong);
}

/* ── small print hint at the bottom of the resume ──────── */

.print-hint {
  margin-top: 48px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 600px) {
  .entry-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
