/* =====================================================================
   Résumé — standalone page (resume.html does NOT load the site styles).
   Black & white, flips with the site's data-view-mode theme.
   ===================================================================== */

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/space-grotesk-500.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/space-grotesk-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}

/* Two tones only: --fg is pure black/white, --muted is the single lighter tone. */
.resume-page {
  --bg: #ffffff;
  --fg: #000000;
  --muted: #595959;
  --rule: #e3e3e3;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[data-view-mode="dark"] .resume-page {
  --bg: #0a0a0a;
  --fg: #ffffff;
  --muted: #9d9d9d;
  --rule: #242424;
}

.resume-page *, .resume-page *::before, .resume-page *::after { box-sizing: border-box; }
.resume-page a { color: inherit; }

/* ---- Top bar: back (left) + actions (right) ---- */
.cv-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 940px;
  margin: 0 auto;
  padding: 1.3rem 1.6rem;
}
.cv-bar svg { width: 18px; height: 18px; }
.cv-back {
  display: inline-flex; align-items: center; gap: .45rem;
  font: 600 .9rem/1 var(--body);
  color: var(--muted);
  background: none; border: 0; padding: .35rem .2rem; cursor: pointer;
}
.cv-back:hover { color: var(--fg); }
/* Solid by default so actions stand apart from fields; outline on hover. */
.cv-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font: 600 .82rem/1 var(--body); letter-spacing: .01em;
  padding: .55rem .95rem;
  border: 1.5px solid var(--fg); border-radius: 999px;
  background: var(--fg); color: var(--bg); cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.cv-btn:hover { background: transparent; color: var(--fg); }
.cv-btn svg { width: 15px; height: 15px; }
/* Mode toggle: mirrors .mode-toggle-button in styles.scss (same drawing,
   colors, and animation) so this global element stays consistent site-wide. */
.cv-mode {
  position: relative;
  width: 2.4rem; height: 2.4rem;
  display: flex; justify-content: center; align-items: center;
  background: none; border: 0; cursor: pointer;
}
.cv-mode .sun,
.cv-mode .moon {
  width: 50%; height: 50%;
  position: absolute;
  opacity: 0;
  transform: scale(.6) rotate(0deg);
  transition: transform .3s ease-in, opacity .2s ease-in .1s;
}
.cv-mode .sun { background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, #26292c 50%); }
.cv-mode .sun::before {
  content: ""; position: absolute; display: block;
  width: 100%; height: 100%;
  background: radial-gradient(circle, #26292c 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, #26292c 50%);
  transform: rotate(45deg);
}
html[data-view-mode="light"] .cv-mode .sun { opacity: 1; transform: scale(1) rotate(180deg); }
.cv-mode .moon {
  left: 12.5%; top: 18.75%;
  background-color: transparent; border-radius: 50%;
  box-shadow: 9px 3px 0 0 #fcfdff;
  transform: scale(.3) rotate(65deg);
}
html[data-view-mode="dark"] .cv-mode .moon { opacity: 1; transform: scale(1) rotate(0deg); }
.cv-mode .moon .star {
  position: absolute; top: 25%; left: 5%;
  display: block; width: 0; height: 0;
  border-right: 7px solid transparent;
  border-bottom: 5px solid #fcfdff;
  border-left: 7px solid transparent;
  transform: scale(.55) rotate(35deg);
  opacity: 0;
  transition: all .2s ease-in .4s;
}
.cv-mode .moon .star::before {
  content: ""; position: absolute; top: -3px; left: -5px;
  width: 0; height: 0;
  border-bottom: 5px solid #fcfdff;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  transform: rotate(-35deg);
}
.cv-mode .moon .star::after {
  content: ""; position: absolute; top: 0; left: -7px;
  width: 0; height: 0;
  border-right: 7px solid transparent;
  border-bottom: 5px solid #fcfdff;
  border-left: 7px solid transparent;
  transform: rotate(-70deg);
}
.cv-mode .moon .star.small {
  position: relative; top: 50%; left: 37.5%;
  transform: scale(.35) rotate(35deg);
  opacity: 0;
  transition: all .2s ease-in .45s;
}
.cv-mode .moon.visible .star { opacity: .8; }
.cv-mode .moon.visible .star.small { opacity: .7; transform: scale(.45) rotate(35deg); }

/* ---- Document ---- */
.cv {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.5rem 1.6rem 6rem;
}

/* Masthead */
.cv-head { margin-bottom: 2.6rem; }
.cv-namebar { display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; flex-wrap: wrap; }
.cv-dl { flex: none; }
.cv-name { margin: 0; line-height: 0; position: relative; }
.cv-name a { display: inline-block; line-height: 0; }
.cv-name img { height: 62px; width: auto; display: block; }
/* Invisible text layer under the logo (OCR-style), so the name and title
   survive into the PDF text layer and copy-paste. Painted at full size with
   a 1% alpha, NOT color: transparent — current Chromium drops fully
   transparent text from print-to-pdf output entirely, which silently removed
   the name from the PDF. 1% white is invisible on both themes. Clipping or
   shrinking the span truncates the extracted glyphs. */
.cv-name-text {
  position: absolute; left: 0; top: 0;
  white-space: nowrap; font-size: 18px; line-height: 1.2;
  color: rgba(255, 255, 255, .01); user-select: none; pointer-events: none;
}
.cv-name .cv-logo-dark { display: none; }
html[data-view-mode="dark"] .cv-name .cv-logo-light { display: none; }
html[data-view-mode="dark"] .cv-name .cv-logo-dark { display: block; }

.cv-title {
  margin: 1.1rem 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .01em;
}
.cv-tagline { margin: 1.15rem 0 0; max-width: 54ch; color: var(--muted); font-size: 1.06rem; }

.cv-contact {
  list-style: none; margin: 1.3rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .55rem 1.5rem;
  font-size: .9rem;
}
.cv-contact li { display: inline-flex; align-items: center; gap: .45rem; }
.cv-contact svg { width: 16px; height: 16px; color: var(--muted); flex: none; }
.cv-contact a { text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 1px; }
.cv-contact a:hover { border-color: var(--fg); }

.cv-stats {
  list-style: none; margin: 1.4rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.cv-stats li {
  font-size: .82rem; color: var(--muted);
  padding: .35rem .7rem; border: 1px solid var(--rule); border-radius: 999px;
}
.cv-stats strong { color: var(--fg); font-family: var(--display); font-weight: 700; }

.cv-status-text { margin: 0; max-width: 74ch; color: var(--muted); }
.cv-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.cv-link:hover { text-decoration-thickness: 2px; }

/* Sections */
.cv-section { margin: 0 0 2.7rem; }
.cv-section h2 {
  position: relative;
  margin: 0 0 1.3rem;
  font-family: var(--display); font-weight: 700;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .15em;
  color: var(--fg);
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--rule);
}
.cv-section h2::after {
  content: ""; position: absolute; left: 0; bottom: -1.5px;
  width: 40px; height: 2.5px; background: var(--fg);
}
.cv-summary { margin: 0; font-size: 1.04rem; max-width: 74ch; }

/* Experience */
.cv-job { margin: 0 0 2rem; }
.cv-job:last-child { margin-bottom: 0; }
.cv-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; }
.cv-role { min-width: 0; }
.cv-job h3 { margin: 0; font-family: var(--display); font-weight: 700; font-size: 1.16rem; letter-spacing: -.005em; }
.cv-org { margin: .2rem 0 0; color: var(--muted); font-size: .93rem; }
.cv-via { margin: .15rem 0 0; color: var(--muted); font-size: .8rem; }
.cv-dot { opacity: .5; }
.cv-dates {
  font-family: var(--display); font-weight: 500;
  font-size: .8rem; color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums;
}
.cv-lead { margin: .6rem 0 .5rem; }
.cv-bullets { margin: .5rem 0 0; padding: 0; list-style: none; }
.cv-bullets li { position: relative; padding-left: 1.2rem; margin: .34rem 0; }
.cv-bullets li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--fg);
}

/* Nested client engagements */
.cv-clients { margin: 1.1rem 0 0; padding-left: 1.3rem; border-left: 2px solid var(--rule); display: grid; gap: 1.3rem; }
.cv-client h4 { margin: 0; font-weight: 700; font-size: .98rem; }
.cv-loc { color: var(--muted); font-weight: 400; }
/* Brief engagements: same chronological flow, lighter weight, one line of context. */
.cv-client-brief h4 { font-weight: 500; font-size: .94rem; }
.cv-client-brief .cv-note { margin: .15rem 0 0; color: var(--muted); font-size: .9rem; }

/* Engagement links into case studies and projects: quiet, discoverable. */
.cv-go {
  text-decoration: underline dotted 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--muted);
}
.cv-go:hover { text-decoration: underline solid 1px; text-decoration-color: var(--fg); }

/* Earlier experience */
.cv-earlier { list-style: none; margin: 0; padding: 0; }
.cv-earlier li {
  display: grid; grid-template-columns: 1fr auto; column-gap: 1.2rem;
  padding: .65rem 0; border-bottom: 1px solid var(--rule); align-items: baseline;
}
.cv-earlier li:last-child { border-bottom: 0; }
.cv-earlier-role { grid-column: 1; grid-row: 1; font-weight: 700; }
.cv-earlier-org { grid-column: 1; grid-row: 2; color: var(--muted); font-size: .9rem; }
.cv-earlier .cv-dates { grid-column: 2; grid-row: 1 / span 2; align-self: center; }

/* Skills */
.cv-skills { margin: 0; display: grid; gap: 1.05rem; }
.cv-skills > div { display: grid; grid-template-columns: 190px 1fr; gap: .4rem 1.6rem; align-items: baseline; }
.cv-skills dt { margin: 0; font-family: var(--display); font-weight: 500; font-size: .9rem; }
.cv-skills dd { margin: 0; font-size: .96rem; }

/* Education + Certifications */
.cv-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; }
.cv-plain { list-style: none; margin: 0; padding: 0; }
.cv-plain li { margin: 0 0 .7rem; }
.cv-plain li:last-child { margin-bottom: 0; }
.cv-certs { margin: 0; }
.cv-muted { color: var(--muted); font-size: .9rem; }

@media (max-width: 640px) {
  .cv-skills > div { grid-template-columns: 1fr; gap: .15rem; }
  .cv-two-col { grid-template-columns: 1fr; gap: 1.8rem; }
  .cv-bar, .cv { padding-left: 1.1rem; padding-right: 1.1rem; }
  .cv-back span { display: none; }
}

/* ---- Download gate dialog ---- */
/* The hidden attribute must win over display rules like .cv-granted-pass's flex. */
.cv-dialog [hidden] { display: none !important; }
.cv-dialog {
  width: min(92vw, 430px);
  border: 1px solid var(--rule); border-radius: 16px;
  background: var(--bg); color: var(--fg);
  padding: 1.4rem 1.5rem 1.5rem;
  font-family: var(--body); font-size: .95rem;
}
.cv-dialog::backdrop { background: rgba(0, 0, 0, .45); }
.cv-dialog-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.cv-dialog-head h2 { margin: 0; font: 700 1.15rem var(--display); }
.cv-dialog-close { background: none; border: 0; color: var(--muted); cursor: pointer; padding: .3rem; }
.cv-dialog-close svg { width: 18px; height: 18px; display: block; }
.cv-dialog-close:hover { color: var(--fg); }
.cv-dialog-sub { margin: .35rem 0 1.1rem; color: var(--muted); font-size: .9rem; }
.cv-field { display: block; margin: 0 0 .85rem; }
.cv-field span { display: block; font: 600 .78rem/1 var(--body); letter-spacing: .02em; margin-bottom: .35rem; }
.cv-field input, .cv-field select, .cv-field textarea {
  width: 100%; box-sizing: border-box; padding: .55rem .65rem;
  font: inherit; color: inherit; background: transparent;
  border: 1.5px solid var(--rule); border-radius: 8px;
}
.cv-field select option { background: var(--bg); color: var(--fg); }
.cv-field textarea { resize: vertical; }
.cv-field input:focus, .cv-field select:focus, .cv-field textarea:focus { outline: none; border-color: var(--fg); }
.cv-field input.invalid { border-color: #b3261e; }
html[data-view-mode="dark"] .cv-field input.invalid { border-color: #ff8a7a; }
.cv-field-err { display: block; margin-top: .35rem; color: #b3261e; font-size: .78rem; line-height: 1.35; }
html[data-view-mode="dark"] .cv-field-err { color: #ff8a7a; }
.cv-intent { border: 0; margin: 1.1rem 0 0; padding: 0; }
.cv-intent legend { font: 600 .78rem/1 var(--body); letter-spacing: .02em; padding: 0; margin-bottom: .5rem; }
.cv-intent label {
  display: flex; gap: .6rem; align-items: flex-start;
  padding: .6rem .65rem; border: 1.5px solid var(--rule); border-radius: 10px;
  margin-bottom: .5rem; cursor: pointer;
}
.cv-intent label:has(input:checked) { border-color: var(--fg); }
.cv-intent input { margin-top: .2rem; accent-color: var(--fg); }
.cv-intent strong { display: block; font-size: .9rem; }
.cv-intent small { display: block; color: var(--muted); font-size: .8rem; line-height: 1.4; margin-top: .15rem; }
.cv-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cv-dialog-submit { margin-top: .9rem; width: 100%; justify-content: center; padding: .7rem 1rem; font-size: .9rem; }
.cv-dialog-error { margin: .7rem 0 0; color: #b3261e; font-size: .85rem; }
html[data-view-mode="dark"] .cv-dialog-error { color: #ff8a7a; }
.cv-granted h2 { margin: 0 0 .5rem; font: 700 1.15rem var(--display); }
.cv-granted p { margin: .4rem 0; font-size: .92rem; }
.cv-granted-pass { display: flex; gap: .6rem; align-items: center; margin: .8rem 0 .3rem; }
.cv-granted-pass code {
  flex: 1; padding: .6rem .7rem;
  border: 1.5px dashed var(--fg); border-radius: 8px;
  font-size: 1.02rem; letter-spacing: .03em;
}
.cv-granted-expiry, .cv-granted-mail { color: var(--muted); font-size: .85rem; }

/* =====================================================================
   Print / PDF version. Same document, ink-friendly, US Letter.
   Hidden in print: top bar (back + mode toggle), Download button,
   LinkedIn link, and anything marked .cv-no-print (e.g. travel note).
   ===================================================================== */
@page { size: letter; margin: 12mm 16mm 14mm; }

@media print {
  /* Force light tokens regardless of the on-screen mode. */
  .resume-page,
  html[data-view-mode="dark"] .resume-page {
    --bg: #fff; --fg: #000; --muted: #404040; --rule: #c9c9c9;
    background: #fff; color: #000;
    font-size: 9.25pt; line-height: 1.36;
  }
  /* Within-section row separators sit a step lighter than the section rules. */
  .resume-page { --rule-soft: #e4e4e4; }
  /* Readability: cap the measure so paragraphs don't run the full page width. */
  .cv-summary, .cv-lead, .cv-status-print { max-width: 6.3in; }
  .cv-bullets li { max-width: 6.6in; }
  .cv-bar, .cv-dl, .cv-no-print, .cv-dialog { display: none !important; }

  /* Logo: always the black-on-white variant, even from dark mode. */
  .cv-name .cv-logo-light { display: block !important; }
  .cv-name .cv-logo-dark { display: none !important; }
  .cv-name img { height: 42px; }

  .cv { max-width: none; margin: 0; padding: 0; }
  .cv-head { margin-bottom: .9rem; }
  .cv-tagline { margin-top: .5rem; font-size: 10pt; }
  .cv-contact { margin-top: .65rem; gap: .3rem 1rem; font-size: 8.5pt; }
  .cv-contact svg { width: 10px; height: 10px; }
  .cv-stats { margin-top: .65rem; }
  .cv-stats li { font-size: 7.5pt; padding: .18rem .5rem; }

  .cv-section { margin-bottom: .85rem; }
  .cv-section h2 { font-size: 7.25pt; margin-bottom: .55rem; padding-bottom: .3rem; }
  .cv-summary { font-size: 9.5pt; max-width: none; }
  .cv-status-text { max-width: none; font-size: 9pt; }

  .cv-job { margin-bottom: .85rem; }
  .cv-job h3 { font-size: 11pt; }
  .cv-org { font-size: 8.5pt; }
  .cv-via { font-size: 7.25pt; }
  .cv-dates { font-size: 7.25pt; }
  .cv-lead { margin: .4rem 0 .35rem; }
  .cv-bullets { margin-top: .3rem; }
  .cv-bullets li { margin: .28rem 0; padding-left: 1rem; }
  .cv-bullets li::before { top: .55em; width: 4px; height: 4px; }
  /* The rail belongs to each engagement, not the container, so a page break
     never leaves an empty line running down the margin. */
  .cv-clients { margin-top: .55rem; gap: .48rem; padding-left: 0; border-left: 0; }
  .cv-client { border-left: 2px solid var(--rule); padding-left: .85rem; }
  .cv-client h4 { font-size: 9.25pt; }
  /* Brief engagements collapse to one line: name · context · dates. */
  .cv-client-brief { display: grid; grid-template-columns: auto 1fr auto; column-gap: .7rem; align-items: baseline; }
  .cv-client-brief .cv-row { display: contents; }
  .cv-client-brief h4 { grid-row: 1; grid-column: 1; font-size: 8.75pt; }
  .cv-client-brief .cv-note { grid-row: 1; grid-column: 2; font-size: 8pt; margin: 0; }
  .cv-client-brief .cv-dates { grid-row: 1; grid-column: 3; }

  /* Earlier experience: one line per role, soft separators. */
  .cv-earlier li { grid-template-columns: auto 1fr auto; column-gap: .7rem; padding: .3rem 0; border-bottom-color: var(--rule-soft); }
  .cv-earlier-role { grid-row: 1; grid-column: 1; font-size: 9pt; }
  .cv-earlier-org { grid-row: 1; grid-column: 2; font-size: 8.5pt; }
  .cv-earlier .cv-dates { grid-row: 1; grid-column: 3; }

  /* Skills as a 2×2 grid: same content, half the height. */
  .cv-skills { grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; }
  .cv-skills > div { grid-template-columns: 1fr; gap: .1rem; }
  .cv-skills dt { font-size: 8.25pt; }
  .cv-skills dd { font-size: 8.25pt; }
  .cv-two-col { gap: 1.4rem; }
  .cv-plain li { margin-bottom: .5rem; }
  .cv-certs { font-size: 8.5pt; }
  /* .cv-muted is rem-sized for the screen; in print that outgrows the pt body. */
  .cv-muted { font-size: 8.5pt; }

  /* Bullet dots and the h2 accent are backgrounds; keep them in ink. */
  .cv-bullets li::before,
  .cv-section h2::after {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* Page-flow control. The ThoughtWorks block spans pages, so jobs may
     break; individual clients, rows, and section headers must not. */
  .cv-client, .cv-earlier li, .cv-skills > div { break-inside: avoid; page-break-inside: avoid; }
  .cv-section h2, .cv-job h3 { break-after: avoid; page-break-after: avoid; }
  .cv, .cv-section, .cv-job { orphans: 3; widows: 3; }

  /* Links read as plain text on paper; the PDF keeps them clickable. */
  .resume-page a { color: inherit; text-decoration: none; border: 0; }
  .cv-link { text-decoration: underline; }
}

/* =====================================================================
   Cover letter generator — standalone page sharing this design system.
   The letter document reuses the résumé masthead (.cv-head, .cv-name,
   .cv-contact) and the print rules above, so the PDF matches the résumé.
   ===================================================================== */
.resume-doc { line-height: 1.55; }

.letter-tool {
  max-width: 1240px; margin: 0 auto;
  padding: 1rem 1.6rem 5rem;
  display: grid; grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 3rem; align-items: start;
}

/* Form panel: styled like the download-gate dialog, pinned while you tune. */
.letter-panel {
  position: sticky; top: 1.25rem;
  border: 1px solid var(--rule); border-radius: 16px;
  padding: 1.4rem 1.5rem 1.5rem;
}
.letter-panel h1 { margin: 0 0 .2rem; font: 700 1.3rem var(--display); }
.letter-hint { color: var(--muted); font-size: .85rem; margin: .2rem 0 1.1rem; line-height: 1.45; }
.letter-check {
  display: flex; align-items: flex-start; gap: .55rem;
  margin: .2rem 0 0; font-size: .85rem; line-height: 1.4; cursor: pointer;
}
.letter-check input { margin-top: .2rem; accent-color: var(--fg); }
.letter-actions { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-top: 1.2rem; }
.letter-actions .letter-hint { margin: 0; }

/* The letter document. .cv supplies the page frame; trim it to the column. */
.cv.letter { max-width: 720px; margin: 0; padding: 0; }
.letter-head { margin-bottom: 2.2rem; }
.letter-body p { margin: 0 0 .95rem; max-width: 64ch; }
.letter-date { color: var(--muted); }
.letter-subject { font-family: var(--display); font-weight: 700; }
.letter-sign { margin-top: 1.5rem; }

@media (max-width: 960px) {
  .letter-tool { grid-template-columns: 1fr; gap: 2rem; }
  .letter-panel { position: static; }
}

@media print {
  /* Letters read better a step larger than the dense résumé body. */
  .letter-page, html[data-view-mode="dark"] .letter-page { font-size: 10.5pt; line-height: 1.5; }
  .letter-tool { display: block; max-width: none; padding: 0; }
  .letter-panel { display: none !important; }
  .cv.letter { max-width: none; }
  .letter-head { margin-bottom: 1.4rem; }
  .letter-head .cv-contact { font-size: 8.5pt; }
  .letter-body p { max-width: 6.3in; margin-bottom: .85rem; }
  .letter-body a { color: inherit; text-decoration: none; }
  .letter-body .cv-link { text-decoration: underline; }
}
