/*
 * One-page CV for Print / Save as PDF
 */

.cv-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin: 0 0 clamp(2rem, 5vh, 3rem);
}

.cv-print-btn {
  font-family: inherit;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog-dim, rgba(226, 221, 234, 0.78));
  background: transparent;
  border: 1px solid rgba(195, 170, 245, 0.4);
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.cv-print-btn:hover {
  color: #f2edf8;
  border-color: var(--violet-light, #c3aaf5);
}

@media print {
  @page {
    size: A4;
    margin: 14mm 16mm;
  }

  html,
  body {
    background: #fff !important;
    color: #1a1520 !important;
  }

  .mast,
  .nav-toggle,
  .top-nav,
  .lang,
  .cv-toolbar,
  .cv-foot-link,
  .site-foot,
  .lb {
    display: none !important;
  }

  .shell {
    max-width: none;
    padding: 0;
    margin: 0;
  }

  .cv-head,
  .cv-section,
  .cv-entry,
  .cv-title,
  .cv-identity,
  .cv-role,
  .cv-points li,
  .cv-skills li,
  .cv-place,
  .cv-when {
    color: #1a1520 !important;
  }

  .cv-title {
    font-size: 22pt !important;
    margin-bottom: 0.4rem !important;
  }

  .cv-section {
    margin-bottom: 0.85rem !important;
    break-inside: avoid;
  }

  .cv-section-title {
    color: #4a3d63 !important;
    font-size: 8pt !important;
  }

  a {
    color: inherit !important;
    text-decoration: none !important;
    border-bottom: none !important;
  }
}
