/**
 * CV Builder & My CVs redesign styles.
 */

.lpza-template-cv-builder,
.lpza-template-my-cvs {
  --lpza-ink: #0B1220;
  --lpza-ink-soft: #16202F;
  --lpza-ink-rail: #0E1A28;
  --lpza-paper: #EEF0F2;
  --lpza-paper-card: #FFFFFF;
  --lpza-slate: #5B6B7D;
  --lpza-slate-light: #8C99A8;
  --lpza-gold: #F7B500;
  --lpza-gold-deep: #C99200;
  --lpza-teal: #2D7D6E;
  --lpza-teal-soft: #E4F2EF;
  --lpza-rule: #E3E6EA;
  --lpza-olive: #A39A6E;
  --lpza-danger: #B3463E;
  --lpza-paper-warm: #FAFAF7;
  --lpza-rule-warm: #E7E4DC;
}

.lpza-template-cv-builder .lpza-main,
.lpza-template-my-cvs .lpza-main {
  padding: 0;
}

body.lpza-template-my-cvs {
  background: var(--lpza-paper-warm);
}

body.lpza-template-cv-builder {
  background: var(--lpza-paper);
}

/* ===== CV BUILDER SHELL ===== */
.lpza-template-cv-builder {
  --lpza-nav-height: 64px;
  --lpza-footer-height: 76px;
  --lpza-builder-topbar-height: 52px;
}

.lpza-template-cv-builder .lpza-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--lpza-nav-height) - var(--lpza-footer-height));
}

.lpza-template-cv-builder .cv-builder-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--lpza-nav-height) - var(--lpza-footer-height));
  position: relative;
}

.lpza-template-cv-builder .cv-builder-page::before {
  content: '';
  position: fixed;
  top: calc(var(--lpza-nav-height) + var(--lpza-builder-topbar-height));
  left: 0;
  width: 300px;
  bottom: var(--lpza-footer-height);
  background: var(--lpza-ink-rail);
  z-index: 0;
  pointer-events: none;
}

.lpza-template-cv-builder .cv-builder-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  flex: 1 1 auto;
  min-height: calc(100dvh - var(--lpza-nav-height) - var(--lpza-footer-height) - var(--lpza-builder-topbar-height));
  align-items: stretch;
  background: var(--lpza-paper);
  position: relative;
  z-index: 1;
}

.lpza-template-cv-builder .cv-builder-rail {
  background: var(--lpza-ink-rail);
  color: #fff;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: calc(100dvh - var(--lpza-nav-height) - var(--lpza-footer-height) - var(--lpza-builder-topbar-height));
  align-self: stretch;
  position: relative;
  z-index: 1;
}

.lpza-template-cv-builder .cv-rail-head .cv-rail-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--lpza-gold);
  text-transform: uppercase;
  display: block;
}

.lpza-template-cv-builder .cv-rail-head h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 23px;
  font-weight: 700;
  margin-top: 6px;
  color: #fff;
}

.lpza-template-cv-builder .cv-rail-head p {
  color: var(--lpza-slate-light);
  font-size: 13.5px;
  margin-top: 8px;
  line-height: 1.5;
}

.lpza-template-cv-builder .cv-autosave-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 125, 110, 0.16);
  border: 1px solid rgba(45, 125, 110, 0.35);
  color: #5FCBB3;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.lpza-template-cv-builder .cv-autosave-status.saving {
  background: rgba(247, 181, 0, 0.12);
  border-color: rgba(247, 181, 0, 0.35);
  color: var(--lpza-gold);
}

.lpza-template-cv-builder .cv-autosave-status.error {
  background: rgba(179, 70, 62, 0.12);
  border-color: rgba(179, 70, 62, 0.35);
  color: #E07A72;
}

.lpza-template-cv-builder .cv-autosave-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.lpza-template-cv-builder .cv-manage-link {
  color: var(--lpza-gold);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lpza-template-cv-builder .cv-manage-link:hover {
  text-decoration: underline;
}

/* Step navigation */
.lpza-template-cv-builder .cv-builder-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  gap: 0;
}

.lpza-template-cv-builder button.cv-section-tab {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 13px 10px;
  border-radius: 10px;
  position: relative;
  border: none;
  border-left: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.lpza-template-cv-builder button.cv-section-tab .cv-tab-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--lpza-slate-light);
  background: var(--lpza-ink-rail);
  z-index: 1;
}

.lpza-template-cv-builder button.cv-section-tab .cv-tab-label {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--lpza-slate-light);
}

.lpza-template-cv-builder button.cv-section-tab:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 41px;
  width: 1.5px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}

.lpza-template-cv-builder button.cv-section-tab.done .cv-tab-num {
  background: var(--lpza-teal);
  border-color: var(--lpza-teal);
  color: #fff;
}

.lpza-template-cv-builder button.cv-section-tab.done .cv-tab-label {
  color: #C9D2DB;
}

.lpza-template-cv-builder button.cv-section-tab.current .cv-tab-num,
.lpza-template-cv-builder button.cv-section-tab.active .cv-tab-num {
  background: var(--lpza-gold);
  border-color: var(--lpza-gold);
  color: var(--lpza-ink);
}

.lpza-template-cv-builder button.cv-section-tab.current .cv-tab-label,
.lpza-template-cv-builder button.cv-section-tab.active .cv-tab-label {
  color: #fff;
  font-weight: 600;
}

.lpza-template-cv-builder button.cv-section-tab:hover .cv-tab-label {
  color: #fff;
}

.lpza-template-cv-builder button.cv-section-tab.active {
  background: transparent;
  border-bottom: none;
}

/* Main pane */
.lpza-template-cv-builder .cv-builder-main {
  padding: 36px 40px 60px;
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.lpza-template-cv-builder .cv-picker-head .cv-picker-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.13em;
  color: var(--lpza-slate-light);
  text-transform: uppercase;
  display: block;
}

.lpza-template-cv-builder .cv-picker-head .cv-picker-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 18px;
  color: var(--lpza-ink);
}

.lpza-template-cv-builder .cv-panel {
  padding: 0;
  background: transparent;
}

.lpza-template-cv-builder .cv-panel-hint {
  font-size: 13px;
  color: var(--lpza-slate-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.lpza-template-cv-builder .template-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0;
}

.lpza-template-cv-builder .template-card {
  background: var(--lpza-paper-card);
  border: 2px solid var(--lpza-rule);
  border-radius: 14px;
  padding: 14px 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  text-align: left;
}

.lpza-template-cv-builder .template-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.08);
  border-color: var(--lpza-rule);
  background: var(--lpza-paper-card);
}

.lpza-template-cv-builder .template-card.selected {
  border-color: var(--lpza-gold);
  box-shadow: 0 0 0 3px rgba(247, 181, 0, 0.18);
  background: var(--lpza-paper-card);
}

.lpza-template-cv-builder .tpl-thumb {
  height: 148px;
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--lpza-rule);
  display: flex;
  flex-direction: column;
}

.lpza-template-cv-builder .tpl-thumb .t-head {
  height: 34%;
  flex-shrink: 0;
}

.lpza-template-cv-builder .tpl-thumb .t-body {
  flex: 1;
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lpza-template-cv-builder .tpl-thumb .ln {
  height: 4px;
  border-radius: 2px;
  background: #E3E6EA;
}

.lpza-template-cv-builder .tpl-thumb .ln.w40 { width: 40%; }
.lpza-template-cv-builder .tpl-thumb .ln.w50 { width: 50%; }
.lpza-template-cv-builder .tpl-thumb .ln.w60 { width: 60%; }
.lpza-template-cv-builder .tpl-thumb .ln.w70 { width: 70%; }
.lpza-template-cv-builder .tpl-thumb .ln.w80 { width: 80%; }

.lpza-template-cv-builder .tpl-professional .t-head { background: var(--lpza-ink); }
.lpza-template-cv-builder .tpl-professional .ln { background: #DDE1E6; }
.lpza-template-cv-builder .tpl-modern .t-head { background: var(--lpza-gold); }
.lpza-template-cv-builder .tpl-creative .t-head { background: linear-gradient(120deg, #6D5BD0, #8E7CF0); }
.lpza-template-cv-builder .tpl-minimal .t-head { background: #1A1A1A; height: 18%; }
.lpza-template-cv-builder .tpl-bold .t-head { background: var(--red, #E53E3E); }
.lpza-template-cv-builder .tpl-graduate .t-head { background: #1A365D; }
.lpza-template-cv-builder .tpl-executive .t-head { background: linear-gradient(135deg, #1A202C, #2D3748); }
.lpza-template-cv-builder .tpl-elegant .t-head { background: #F7FAFC; border-bottom: 3px solid #1A202C; height: 22%; }
.lpza-template-cv-builder .tpl-elegant .ln { background: #CBD5E0; }
.lpza-template-cv-builder .tpl-tech .t-head { background: linear-gradient(135deg, #0F172A, #1E293B); }
.lpza-template-cv-builder .tpl-corporate .t-head { background: #2C5282; }
.lpza-template-cv-builder .tpl-academic .t-head { background: #744210; }
.lpza-template-cv-builder .tpl-vibrant .t-head { background: linear-gradient(120deg, #F56565, #ED8936, #ECC94B); }
.lpza-template-cv-builder .tpl-compact .t-head { background: #fff; border-bottom: 2px solid var(--lpza-ink); height: 16%; }
.lpza-template-cv-builder .tpl-compact .ln { background: #E2E8F0; }

.lpza-template-cv-builder .template-grid-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 4px;
}

.lpza-template-cv-builder .template-grid-nav .template-grid-nav-btn {
  border: 1.5px solid var(--lpza-rule);
  background: var(--lpza-paper-card);
  color: var(--lpza-ink);
  border-radius: 10px;
  padding: 11px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.lpza-template-cv-builder .template-grid-nav .template-grid-nav-btn:hover:not(:disabled) {
  border-color: var(--lpza-gold);
  box-shadow: 0 4px 12px rgba(11, 18, 32, 0.08);
}

.lpza-template-cv-builder .template-grid-nav .template-grid-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lpza-template-cv-builder .template-grid-page-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--lpza-slate);
}

.lpza-template-cv-builder .cv-builder-steps {
  overflow-y: auto;
  max-height: calc(100vh - 260px);
  padding-right: 4px;
}

/* Keep redesigned step pills on all 9 steps (override legacy responsive tab rules) */
.lpza-template-cv-builder .cv-builder-steps button.cv-section-tab {
  flex-direction: row !important;
  align-items: center !important;
  border-left: none !important;
  border-bottom: none !important;
}

.lpza-template-cv-builder .cv-builder-steps button.cv-section-tab .cv-tab-num {
  width: 28px !important;
  height: 28px !important;
  font-size: 12.5px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  background: var(--lpza-ink-rail) !important;
  color: var(--lpza-slate-light) !important;
}

.lpza-template-cv-builder .cv-builder-steps button.cv-section-tab.done .cv-tab-num {
  background: var(--lpza-teal) !important;
  border-color: var(--lpza-teal) !important;
  color: #fff !important;
}

.lpza-template-cv-builder .cv-builder-steps button.cv-section-tab.current .cv-tab-num,
.lpza-template-cv-builder .cv-builder-steps button.cv-section-tab.active .cv-tab-num {
  background: var(--lpza-gold) !important;
  border-color: var(--lpza-gold) !important;
  color: var(--lpza-ink) !important;
}

.lpza-template-cv-builder .template-grid-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lpza-template-cv-builder .tpl-thumb-split {
  flex-direction: row;
  gap: 0;
}

.lpza-template-cv-builder .tpl-thumb-split .t-side {
  width: 35%;
  flex-shrink: 0;
}

.lpza-template-cv-builder .tpl-thumb-split .t-main {
  flex: 1;
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
}

.lpza-template-cv-builder .tpl-split-classic .t-side { background: var(--lpza-ink); }
.lpza-template-cv-builder .tpl-split-creative .t-side { background: linear-gradient(180deg, #667EEA, #764BA2); }
.lpza-template-cv-builder .tpl-split-modern .t-side { background: linear-gradient(180deg, #0F766E, #134E4A); }

.lpza-template-cv-builder .tpl-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.lpza-template-cv-builder .template-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--lpza-ink);
}

.lpza-template-cv-builder .template-selected-check,
.lpza-template-cv-builder .selected-pill {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--lpza-teal);
}

.lpza-template-cv-builder .template-card.selected .template-selected-check,
.lpza-template-cv-builder .template-card.selected .selected-pill {
  display: inline-flex;
}

.lpza-template-cv-builder .selected-pill svg {
  width: 13px;
  height: 13px;
}

.lpza-template-cv-builder .template-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lpza-slate);
  background: var(--lpza-paper);
  padding: 3px 8px;
  border-radius: 4px;
}

.lpza-template-cv-builder .cv-nav-actions,
.lpza-template-cv-builder .cv-step-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  gap: 10px;
}

.lpza-template-cv-builder .btn-next {
  background: var(--lpza-gold);
  color: var(--lpza-ink);
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.15s ease;
}

.lpza-template-cv-builder .btn-next:hover {
  box-shadow: 0 6px 14px rgba(201, 146, 0, 0.3);
}

.lpza-template-cv-builder .cv-step-actions .btn-outline-sm {
  border-color: var(--lpza-rule);
  color: var(--lpza-ink);
  border-radius: 10px;
  padding: 13px 18px;
}

.lpza-template-cv-builder .form-group input,
.lpza-template-cv-builder .form-group textarea {
  background: var(--lpza-paper-card);
  border-color: var(--lpza-rule);
  border-radius: 10px;
}

.lpza-template-cv-builder .form-group input:focus,
.lpza-template-cv-builder .form-group textarea:focus {
  border-color: var(--lpza-gold);
}

.lpza-template-cv-builder .btn-upload-remove {
  border-color: var(--lpza-danger) !important;
  color: var(--lpza-danger) !important;
}

.lpza-template-cv-builder .cv-photo-hint {
  font-size: 12px;
  color: var(--lpza-slate-light);
  margin-top: 6px;
}

/* Preview column */
.lpza-template-cv-builder .cv-builder-preview-col {
  position: sticky;
  top: 24px;
  background: transparent;
  padding: 0;
  align-self: start;
}

.lpza-template-cv-builder .cv-preview-center {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lpza-template-cv-builder .cv-preview-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 0 4px;
}

.lpza-template-cv-builder .cv-preview-pagination.hidden {
  display: none;
}

.lpza-template-cv-builder .cv-preview-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--lpza-rule);
  background: var(--lpza-paper-card);
  color: var(--lpza-ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lpza-template-cv-builder .cv-preview-page-btn:hover:not(:disabled) {
  background: var(--lpza-ink);
  border-color: var(--lpza-ink);
  color: #fff;
}

.lpza-template-cv-builder .cv-preview-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.lpza-template-cv-builder .cv-preview-page-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lpza-slate);
  min-width: 96px;
  text-align: center;
}

.lpza-template-cv-builder .cv-pages-host.cv-pages-container .cv-page-sheet.cv-page-hidden {
  display: none !important;
}

.lpza-template-cv-builder .cv-pages-host.cv-pages-container .cv-page-sheet {
  margin-bottom: 0;
}

.lpza-template-cv-builder .cv-preview-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  background: var(--lpza-paper-card);
  border: 1px solid var(--lpza-rule);
  border-radius: 10px;
  padding: 11px 16px;
  margin-bottom: 0;
  font-size: 13px;
  width: 100%;
}

.lpza-template-cv-builder .cv-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--lpza-slate);
}

.lpza-template-cv-builder .cv-legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lpza-template-cv-builder .cv-legend-dot.sample { background: var(--lpza-olive); }
.lpza-template-cv-builder .cv-legend-dot.real { background: var(--lpza-ink); }

.lpza-template-cv-builder .cv-legend-item em {
  font-style: italic;
  color: var(--lpza-slate);
}

.lpza-template-cv-builder .cv-legend-item strong {
  color: var(--lpza-ink);
  font-weight: 600;
}

.lpza-template-cv-builder .cv-paper.cv-sheet {
  background: var(--lpza-paper-card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
  font-family: 'Lora', serif;
}

.lpza-template-cv-builder .cv-preview-mode {
  background: var(--lpza-paper);
}

.lpza-template-cv-builder .cv-preview-toolbar {
  background: var(--lpza-ink);
}

.lpza-template-cv-builder .cv-builder-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: var(--lpza-paper-card);
  border: 1px solid var(--lpza-rule);
  border-left: none;
  border-right: none;
  position: relative;
  z-index: 2;
}

.lpza-template-cv-builder .cv-builder-topbar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lpza-slate-light);
}

.lpza-template-cv-builder .cv-builder-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lpza-ink);
  color: #fff;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lpza-template-cv-builder .cv-builder-preview-btn:hover {
  background: var(--lpza-ink-soft);
  transform: translateY(-1px);
}

.lpza-template-cv-builder .cv-builder-preview-float {
  position: fixed;
  right: 2rem;
  bottom: calc(76px + 1rem + 48px + 12px);
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 14px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: var(--lpza-ink);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(11, 18, 32, 0.22);
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.lpza-template-cv-builder .cv-builder-preview-float:hover {
  background: var(--lpza-ink-soft);
  transform: translateY(-2px);
}

.lpza-template-cv-builder .cv-builder-preview-float.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lpza-template-cv-builder .cv-builder-preview-float svg {
  flex-shrink: 0;
}

.lpza-template-cv-builder .cv-preview-mode:not(.hidden) ~ .cv-builder-preview-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lpza-template-cv-builder .cv-builder-shell.cv-layout {
  grid-template-columns: 300px 1fr !important;
  min-height: calc(100dvh - var(--lpza-nav-height) - var(--lpza-footer-height) - var(--lpza-builder-topbar-height)) !important;
  align-items: stretch !important;
}

.lpza-template-cv-builder .cv-builder-page.preview-hidden {
  display: none !important;
}

/* ===== CV PAGE BREAK PREVIEW ===== */
.lpza-page .cv-pages-host.cv-pages-container {
  background: transparent !important;
  box-shadow: none !important;
  min-height: 0 !important;
  max-width: 600px;
  width: 100%;
}

.lpza-page .cv-page-sheet {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 28px;
  overflow: hidden;
  position: relative;
  background: #fff !important;
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
  border-radius: 14px;
  box-sizing: border-box;
  min-height: 0 !important;
}

.lpza-page .cv-page-sheet:last-child {
  margin-bottom: 0;
}

.lpza-page .cv-page-content {
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.lpza-page .cv-page-content:not(.cv-page-content-split) {
  padding: 1.5rem 2rem 2rem;
}

.lpza-page .cv-page-content:not(.cv-page-content-split) > [class*="cv-header"] {
  margin: -1.5rem -2rem 1.25rem;
  width: calc(100% + 4rem);
  max-width: none;
  box-sizing: border-box;
}

.lpza-page .cv-page-break-line {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  border-bottom: 2px dashed rgba(11, 18, 32, 0.14);
  pointer-events: none;
}

.lpza-page .cv-page-number {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--lpza-slate-light, #8C99A8);
  background: rgba(255, 255, 255, 0.92);
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 2;
}

.lpza-page .cv-preview-full .cv-preview-center {
  width: 100%;
  max-width: 794px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: visible;
  text-align: left;
}

.lpza-page .cv-preview-full .cv-pages-container,
.lpza-page .cv-preview-full #cv-paper-full {
  width: 794px !important;
  max-width: 794px !important;
  min-width: 794px;
  text-align: left !important;
}

.lpza-page .cv-preview-full .cv-page-sheet {
  width: 794px !important;
  max-width: 794px !important;
  text-align: left !important;
}

.lpza-page .cv-preview-full .cv-split-main,
.lpza-page .cv-preview-full .cv-page-content-split,
.lpza-page .cv-preview-full .cv-section,
.lpza-page .cv-preview-full .cv-section p {
  text-align: left !important;
}

.lpza-page .cv-split-main {
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.lpza-page .cv-split-sidebar {
  min-width: 0;
}

.lpza-page .cv-split-layout,
.lpza-page .cv-split-layout-page {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-split-main .cv-section,
.lpza-page .cv-page-sheet.cv-paper-split .cv-split-main p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

/* Split CV pages – sidebar flush full height */
.lpza-page .cv-page-sheet.cv-paper-split {
  padding: 0;
  overflow: hidden;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-page-content-split {
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-split-layout-page {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
  gap: 1.25rem;
  height: 100%;
  min-height: 100%;
  align-items: stretch;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-split-sidebar {
  min-height: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
  align-self: stretch;
  box-sizing: border-box;
  padding: 2rem 1.5rem 2rem 1.75rem;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-split-main {
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  box-sizing: border-box;
  padding: 2.5rem 2rem 2.25rem 2rem;
  background: #fff;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-split-main > .cv-section:first-child {
  padding-top: 1.5rem;
}

.lpza-template-cv-builder .cv-split-main > .cv-section:first-child {
  padding-top: 1.5rem;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-split-main .cv-section {
  margin-bottom: 1.5rem;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-split-main .cv-section-title {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-split-layout {
  min-height: 100%;
  height: 100%;
  gap: 1.25rem;
}

/* Live preview: non-paginated split layout inside host */
.lpza-template-cv-builder .cv-pages-host.cv-paper-split .cv-split-layout:not(.cv-split-layout-page) {
  min-height: 100%;
  align-items: stretch;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-page-content-split > .cv-split-layout {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
  gap: 1.25rem;
  height: 100%;
  min-height: 100%;
  align-items: stretch;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-page-content-split > .cv-split-layout .cv-split-sidebar {
  min-height: 100%;
  height: auto;
  align-self: stretch;
}

.lpza-page .cv-page-sheet.cv-paper-split .cv-page-content-split > .cv-split-layout .cv-split-main {
  padding: 2.5rem 2rem 2.25rem 2rem;
  overflow: hidden;
  background: #fff;
}

/* ===== PDF EXPORT (checkout download) ===== */
.lpza-pdf-capture-root {
  position: fixed;
  left: -20000px;
  top: 0;
  width: 794px;
  max-width: none;
  pointer-events: none;
  z-index: -1;
}

/* Isolate from body.lpza-page preview rules (negative header margins clip in overflow:hidden) */
.lpza-pdf-capture-root .cv-page-content:not(.cv-page-content-split) {
  padding: 0 !important;
  overflow: visible !important;
}

.lpza-pdf-capture-root .cv-page-content:not(.cv-page-content-split) > [class*="cv-header"] {
  margin: 0 0 1.25rem 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.lpza-pdf-capture-root .cv-page-content:not(.cv-page-content-split) > .cv-section,
.lpza-pdf-capture-root .cv-page-content:not(.cv-page-content-split) .cv-body {
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
}

.lpza-pdf-capture-root .cv-page-content:not(.cv-page-content-split) .cv-body {
  padding-bottom: 32px !important;
}

.lpza-pdf-export {
  width: 794px;
  max-width: none !important;
  margin: 0;
  padding: 0;
  background: #fff;
}

.lpza-pdf-export .cv-pages-container,
.lpza-pdf-export .cv-paper,
.lpza-pdf-export .cv-page-sheet {
  max-width: none !important;
  width: 794px !important;
}

.lpza-pdf-export .cv-page-sheet {
  width: 794px !important;
  max-width: none !important;
  height: 1123px !important;
  max-height: 1123px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.lpza-pdf-export .cv-page-content:not(.cv-page-content-split) {
  padding: 0 !important;
}

.lpza-pdf-export .cv-page-content:not(.cv-page-content-split) > [class*="cv-header"] {
  margin: 0 0 1.25rem 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.lpza-pdf-export .cv-page-content:not(.cv-page-content-split) .cv-body {
  padding: 0 32px 32px !important;
  box-sizing: border-box !important;
}

.lpza-pdf-export .cv-page-content:not(.cv-page-content-split) > .cv-section {
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
}

.lpza-pdf-export .cv-page-content,
.lpza-pdf-export .cv-page-content-split {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.lpza-pdf-export .cv-split-layout,
.lpza-pdf-export .cv-split-layout-page {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
}

.lpza-pdf-export .cv-split-sidebar {
  min-height: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
}

.lpza-pdf-export .cv-split-main {
  min-height: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

/* PDF-matched preview layout (full preview + checkout – same pagination as export) */
.lpza-page .cv-page-sheet.cv-page-pdf-layout .cv-page-content:not(.cv-page-content-split) {
  padding: 0 !important;
}

.lpza-page .cv-page-sheet.cv-page-pdf-layout .cv-page-content:not(.cv-page-content-split) > [class*="cv-header"] {
  margin: 0 0 1.25rem 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.lpza-page .cv-page-sheet.cv-page-pdf-layout .cv-page-content:not(.cv-page-content-split) > .cv-section,
.lpza-page .cv-page-sheet.cv-page-pdf-layout .cv-page-content:not(.cv-page-content-split) .cv-body {
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
}

.lpza-page .cv-page-sheet.cv-page-pdf-layout .cv-page-content:not(.cv-page-content-split) .cv-body {
  padding-bottom: 32px !important;
}

.lpza-page .cv-page-sheet.cv-page-pdf-layout.cv-page-continued .cv-page-content:not(.cv-page-content-split),
.lpza-pdf-export .cv-page-sheet.cv-page-continued .cv-page-content:not(.cv-page-content-split),
.lpza-pdf-capture-root .cv-page-sheet.cv-page-continued .cv-page-content:not(.cv-page-content-split) {
  padding-top: 32px !important;
}

.lpza-page .cv-page-sheet.cv-page-pdf-layout.cv-page-continued .cv-split-main,
.lpza-pdf-export .cv-page-sheet.cv-page-continued .cv-split-main,
.lpza-pdf-capture-root .cv-page-sheet.cv-page-continued .cv-split-main {
  padding-top: 32px !important;
}

/* ===== CHECKOUT PAGE (launchpad-checkout.html redesign) ===== */
body.lpza-template-cv-checkout {
  background: #F0F2F5;
}

body.lpza-template-cv-checkout .lpza-main {
  padding-top: 0;
}

.checkout-page {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.checkout-back {
  align-self: flex-start;
  color: #6B7585;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  transition: color 0.15s ease;
}

.checkout-back:hover {
  color: #0D1117;
}

.checkout-back svg {
  width: 14px;
  height: 14px;
}

.checkout-page-header {
  margin-bottom: 2rem;
}

.checkout-page-header h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #0D1117;
}

.checkout-page-header p {
  color: #6B7585;
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.5rem;
  width: 100%;
}

.checkout-page .card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #DDE1E7;
  overflow: hidden;
}

.summary-accent {
  height: 4px;
  background: linear-gradient(90deg, #F5C518 0%, #C9A00A 100%);
}

.checkout-success-accent {
  background: linear-gradient(90deg, #16A34A 0%, #15803D 100%);
}

.summary-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7585;
  margin-bottom: 1rem;
}

.summary-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: #0D1117;
  margin-bottom: 0.4rem;
}

.summary-desc {
  color: #6B7585;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.summary-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #F5C518 0%, #C9A00A 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.summary-icon svg {
  width: 22px;
  height: 22px;
  color: #0D1117;
}

.line-items {
  border-top: 1px solid #DDE1E7;
  padding-top: 1.25rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.line-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.line-item-label {
  font-size: 0.85rem;
  color: #6B7585;
}

.line-item-sublabel {
  font-size: 0.72rem;
  color: #9CA3AF;
  margin-top: 1px;
}

.line-item-price {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0D1117;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1.5px solid #0D1117;
  margin-top: 0.25rem;
}

.total-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0D1117;
}

.total-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #0D1117;
}

.checkout-payment-card {
  padding: 2rem;
}

.payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: #0D1117;
}

.card-badges {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.card-badges .badge {
  background: #F0F2F5;
  border: 1px solid #DDE1E7;
  border-radius: 5px;
  padding: 0.2rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: #6B7585;
  letter-spacing: 0.04em;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.checkout-payment-form .form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0D1117;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.checkout-payment-form .form-group input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #DDE1E7;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #0D1117;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
}

.checkout-payment-form .form-group input::placeholder {
  color: #B0B8C4;
}

.checkout-payment-form .form-group input:focus {
  border-color: #F5C518;
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.card-number-wrap {
  position: relative;
}

.card-number-wrap input {
  padding-right: 2.5rem;
}

.card-icon {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: #B0B8C4;
  pointer-events: none;
}

.card-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.checkout-error {
  background: #FEE2E2;
  color: #B91C1C;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.checkout-error.hidden {
  display: none !important;
}

.btn-checkout-pay,
.btn-checkout-download {
  width: 100%;
  padding: 0.95rem 1rem;
  background: #0D1117;
  color: #F5C518;
  border: none;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
  position: relative;
  overflow: hidden;
}

.btn-checkout-pay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.btn-checkout-pay:hover:not(:disabled),
.btn-checkout-download:hover {
  background: #1a2540;
  box-shadow: 0 8px 24px rgba(13, 17, 23, 0.25);
  transform: translateY(-1px);
}

.btn-checkout-pay:active:not(:disabled),
.btn-checkout-download:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-checkout-pay:disabled,
.btn-checkout-download:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.btn-checkout-pay svg,
.btn-checkout-download svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.demo-note {
  text-align: center;
  font-size: 0.75rem;
  color: #6B7585;
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.demo-note svg {
  width: 13px;
  height: 13px;
  color: #16A34A;
  flex-shrink: 0;
}

.checkout-trust-bar {
  width: 100%;
  margin-top: 1.25rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #6B7585;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: #16A34A;
  flex-shrink: 0;
}

.checkout-success-wrap {
  width: 100%;
}

.checkout-page:has(.checkout-success-wrap) {
  max-width: 960px;
}

.checkout-success-card {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.checkout-success-body {
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.checkout-success-body h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #0D1117;
  margin-bottom: 0.5rem;
}

.checkout-success-body > p {
  color: #6B7585;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.checkout-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.checkout-success-icon svg {
  width: 28px;
  height: 28px;
}

.checkout-pdf-download-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.checkout-success-actions--toolbar {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.checkout-success-actions--toolbar .btn-checkout-download,
.checkout-success-actions--toolbar .btn-checkout-secondary {
  flex: 1 1 0;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  white-space: nowrap;
  line-height: 1.2;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 0 !important;
}

.checkout-success-actions--toolbar .btn-checkout-download svg {
  width: 15px;
  height: 15px;
}

.checkout-download-preview {
  margin: 2rem 0 0;
  padding-top: 0.25rem;
  text-align: left;
  width: 100%;
}

.checkout-preview-frame {
  width: 100%;
  max-width: 794px;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
}

.checkout-download-preview .cv-pages-host,
.checkout-download-preview .cv-pages-container,
.checkout-download-preview #checkout-cv-paper {
  width: 794px !important;
  max-width: 794px !important;
  margin: 0 !important;
  text-align: left !important;
  transform: none !important;
}

.checkout-download-preview .cv-page-sheet {
  width: 794px !important;
  max-width: 100% !important;
  margin: 0 auto 28px !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

.checkout-download-preview .cv-page-content,
.checkout-download-preview .cv-page-content-split,
.checkout-download-preview .cv-split-main,
.checkout-download-preview .cv-body,
.checkout-download-preview .cv-section,
.checkout-download-preview .cv-section-title,
.checkout-download-preview .cv-split-sidebar,
.checkout-download-preview p {
  text-align: left !important;
}

.checkout-download-preview .cv-split-main,
.checkout-download-preview .cv-split-layout,
.checkout-download-preview .cv-split-layout-page,
.checkout-download-preview .cv-split-sidebar {
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.checkout-success-actions {
  display: grid;
  gap: 0.75rem;
  max-width: 360px;
  margin: 0 auto;
}

.btn-checkout-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  border: 1.5px solid #DDE1E7;
  text-decoration: none;
  color: #0D1117;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-checkout-secondary:hover {
  border-color: #0D1117;
  background: #F0F2F5;
}

@media print {
  body.lpza-print-cv nav,
  body.lpza-print-cv footer,
  body.lpza-print-cv .back-to-top,
  body.lpza-print-cv .checkout-success-actions,
  body.lpza-print-cv .checkout-success-icon,
  body.lpza-print-cv .checkout-success-body > h1,
  body.lpza-print-cv .checkout-success-body > p {
    display: none !important;
  }

  body.lpza-print-cv .checkout-page,
  body.lpza-print-cv .card,
  body.lpza-print-cv .checkout-download-preview {
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
  }

  body.lpza-print-cv .checkout-download-preview .cv-pages-container,
  body.lpza-print-cv .checkout-download-preview #checkout-cv-paper {
    transform: none;
    width: 100% !important;
    max-width: none !important;
  }

  body.lpza-print-cv .cv-page-sheet {
    break-after: page;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
  }

  body.lpza-print-cv .cv-page-number,
  body.lpza-print-cv .cv-page-break-line {
    display: none;
  }
}

@media (max-width: 680px) {
  .checkout-page {
    padding: 2rem 1rem 3rem;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-trust-bar {
    flex-direction: column;
    align-items: center;
  }

  .payment-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-success-actions--toolbar {
    max-width: 100%;
    flex-wrap: nowrap !important;
  }

  .checkout-success-actions--toolbar .btn-checkout-download,
  .checkout-success-actions--toolbar .btn-checkout-secondary {
    flex: 1 1 0;
    min-width: 0;
    font-size: 0.75rem;
    padding: 0.5rem 0.45rem;
  }

  .checkout-page:has(.checkout-success-wrap) {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .checkout-success-body {
    padding: 2rem 0.75rem;
  }

  .checkout-download-preview {
    margin-top: 1.5rem;
  }

  .checkout-preview-frame {
    overflow-x: auto;
  }

  .checkout-download-preview .cv-pages-host,
  .checkout-download-preview .cv-pages-container,
  .checkout-download-preview #checkout-cv-paper,
  .checkout-download-preview .cv-page-sheet {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ===== MY CVs PAGE ===== */
.lpza-template-my-cvs .my-cvs-topbar {
  background: var(--lpza-ink);
  background-image: radial-gradient(circle at 92% 0%, rgba(247, 181, 0, 0.08), transparent 55%);
  padding: 48px 56px 40px;
  position: relative;
  overflow: hidden;
}

.lpza-template-my-cvs .my-cvs-topbar::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.lpza-template-my-cvs .my-cvs-topbar-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--lpza-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.lpza-template-my-cvs .my-cvs-topbar h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: #fff;
  letter-spacing: -0.01em;
}

.lpza-template-my-cvs .my-cvs-topbar p {
  color: #A9B4C2;
  font-size: 15px;
  margin-top: 8px;
  max-width: 440px;
}

.lpza-template-my-cvs .lpza-layout > footer {
  background: var(--lpza-ink);
  padding: 26px 56px;
}

.lpza-template-my-cvs .lpza-layout > footer .meta,
.lpza-template-my-cvs .lpza-layout > footer > div:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: #7E8A99;
}

.lpza-template-my-cvs .my-cvs-page-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lpza-template-my-cvs .my-cvs-wrap {
  flex: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 44px 56px 80px;
  width: 100%;
}

.lpza-template-my-cvs .my-cvs-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
}

.lpza-template-my-cvs .my-cvs-toolbar-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--lpza-slate-light);
  text-transform: uppercase;
  display: block;
}

.lpza-template-my-cvs .my-cvs-toolbar-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.lpza-template-my-cvs .my-cvs-toolbar-title-row h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--lpza-ink);
}

.lpza-template-my-cvs .my-cvs-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--lpza-slate);
  background: #fff;
  border: 1px solid var(--lpza-rule-warm);
  padding: 5px 12px;
  border-radius: 100px;
}

.lpza-template-my-cvs .my-cvs-btn-create {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lpza-gold);
  color: var(--lpza-ink);
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.lpza-template-my-cvs .my-cvs-btn-create:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(201, 146, 0, 0.3);
  color: var(--lpza-ink);
}

.lpza-template-my-cvs .cv-saved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.lpza-template-my-cvs .cv-saved-grid .cv-saved-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--lpza-slate-light);
}

.lpza-template-my-cvs .cv-saved-card {
  background: var(--lpza-paper-card);
  border: 1px solid var(--lpza-rule-warm);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.lpza-template-my-cvs .cv-saved-card:hover {
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08);
  transform: translateY(-2px);
  border-color: var(--lpza-rule-warm);
}

.lpza-template-my-cvs .cv-saved-card.active {
  box-shadow: 0 0 0 2px rgba(247, 181, 0, 0.35);
  border-color: var(--lpza-gold);
}

.lpza-template-my-cvs .cv-saved-card-tab {
  height: 8px;
  background: var(--lpza-teal);
}

.lpza-template-my-cvs .cv-saved-card.draft .cv-saved-card-tab {
  background: var(--lpza-slate-light);
}

.lpza-template-my-cvs .cv-saved-card-body {
  padding: 22px 22px 18px;
  flex: 1;
}

.lpza-template-my-cvs .cv-saved-card-identity {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lpza-template-my-cvs .cv-saved-card-initials {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--lpza-ink);
  color: var(--lpza-gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lpza-template-my-cvs .cv-saved-card-name-block {
  min-width: 0;
  flex: 1;
}

.lpza-template-my-cvs .cv-saved-card-title-input {
  width: 100%;
  border: 1.5px solid transparent;
  background: transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--lpza-ink);
  padding: 0;
  line-height: 1.25;
  border-radius: 6px;
  box-sizing: border-box;
}

.lpza-template-my-cvs .cv-saved-card-title-input:hover {
  border-color: var(--lpza-rule-warm);
  padding: 4px 8px;
}

.lpza-template-my-cvs .cv-saved-card-title-input:focus {
  border-color: var(--lpza-gold);
  background: #fff;
  padding: 4px 8px;
  outline: none;
}

.lpza-template-my-cvs .cv-saved-card-title-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lpza-template-my-cvs .cv-saved-card-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--lpza-slate-light);
  display: block;
  margin-top: 4px;
}

.lpza-template-my-cvs .cv-saved-card-tags {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 12px 0 10px;
  flex-wrap: wrap;
}

.lpza-template-my-cvs .cv-saved-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--lpza-teal-soft);
  color: var(--lpza-teal);
}

.lpza-template-my-cvs .cv-saved-preview-strip {
  margin-top: 16px;
  border: 1px solid var(--lpza-rule-warm);
  border-radius: 8px;
  background: #F4F2EC;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lpza-template-my-cvs .cv-saved-pline {
  height: 5px;
  border-radius: 3px;
  background: #D8D4C8;
}

.lpza-template-my-cvs .cv-saved-pline.short { width: 55%; }
.lpza-template-my-cvs .cv-saved-pline.med { width: 78%; }

.lpza-template-my-cvs .cv-saved-card-actions {
  border-top: 1px solid var(--lpza-rule-warm);
  padding: 12px 14px;
  display: flex;
  gap: 8px;
}

.lpza-template-my-cvs .cv-saved-card-actions .cv-saved-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 0;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lpza-slate);
  transition: background 0.15s ease, color 0.15s ease;
  width: auto;
  height: auto;
}

.lpza-template-my-cvs .cv-saved-card-actions .cv-saved-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.lpza-template-my-cvs .cv-saved-card-actions .cv-saved-btn:hover {
  background: #F0EEE7;
  color: var(--lpza-ink);
  opacity: 1;
}

.lpza-template-my-cvs .cv-saved-card-actions .cv-saved-btn.load {
  background: var(--lpza-ink);
  color: #fff;
}

.lpza-template-my-cvs .cv-saved-card-actions .cv-saved-btn.load:hover {
  background: var(--lpza-ink-soft);
  color: #fff;
}

.lpza-template-my-cvs .cv-saved-card-actions .cv-saved-btn.delete:hover {
  background: #FBEBE9;
  color: var(--lpza-danger);
}

.lpza-template-my-cvs .cv-saved-ghost-card {
  border: 1.5px dashed var(--lpza-rule-warm);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 24px;
  color: var(--lpza-slate-light);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  background: transparent;
  text-decoration: none;
  min-height: 260px;
}

.lpza-template-my-cvs .cv-saved-ghost-card:hover {
  border-color: var(--lpza-gold-deep);
  color: var(--lpza-gold-deep);
}

.lpza-template-my-cvs .cv-saved-ghost-card svg {
  width: 26px;
  height: 26px;
}

.lpza-template-my-cvs .cv-saved-ghost-card span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
}

/* Responsive */
/* Override legacy CV builder responsive rules on redesigned pages */
@media (max-width: 1024px) {
  .lpza-template-cv-builder .cv-builder-shell {
    grid-template-columns: 1fr;
  }

  .lpza-template-cv-builder .cv-builder-steps {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    padding: 0 !important;
    border-bottom: none !important;
    min-height: auto !important;
  }

  .lpza-template-cv-builder button.cv-section-tab {
    flex: none !important;
    border-bottom: none !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 980px) {
  .lpza-template-cv-builder .cv-builder-main {
    grid-template-columns: 1fr;
  }

  .lpza-template-cv-builder .cv-builder-preview-col {
    position: static;
  }
}

@media (max-width: 760px) {
  .lpza-template-cv-builder .cv-builder-preview-float {
    right: 1.25rem;
    bottom: calc(76px + 1rem + 42px + 10px);
    height: 42px;
    padding: 0 14px 0 12px;
    font-size: 12.5px;
  }

  .lpza-template-cv-builder .cv-builder-page::before {
    display: none;
  }

  .lpza-template-cv-builder .cv-builder-shell {
    grid-template-columns: 1fr;
    background: var(--lpza-paper);
  }

  .lpza-template-cv-builder .cv-builder-rail {
    background: var(--lpza-ink-rail);
    min-height: auto;
    padding: 24px 20px;
    gap: 20px;
  }

  .lpza-template-cv-builder .cv-builder-main {
    padding: 24px 20px 48px;
  }

  .lpza-template-cv-builder .template-grid {
    grid-template-columns: 1fr;
  }

  .lpza-template-my-cvs .my-cvs-topbar,
  .lpza-template-my-cvs .my-cvs-wrap {
    padding-left: 22px;
    padding-right: 22px;
  }

  .lpza-template-my-cvs .my-cvs-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* My CVs purchased download */
.lpza-template-my-cvs .cv-saved-card-actions .cv-saved-btn.download {
  background: #E8F5EC;
  color: #1B5E3B;
  flex: 1.2;
}

.lpza-template-my-cvs .cv-saved-card-actions .cv-saved-btn.download:hover {
  background: #D4EDDA;
  color: #134D31;
}

.lpza-page .cv-saved-btn.download {
  background: #E8F5EC;
  color: #1B5E3B;
  border-color: #C6E7CF;
}

.checkout-grid.checkout-grid--single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}


/* ===== CV BUILDER TOPBAR – active CV name ===== */
.lpza-template-cv-builder .cv-builder-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.lpza-template-cv-builder .cv-builder-topbar-center {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.lpza-template-cv-builder .cv-builder-topbar-right {
  display: flex;
  justify-content: flex-end;
}

.lpza-template-cv-builder .cv-builder-active-cv-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lpza-slate-light);
  flex-shrink: 0;
}

.lpza-template-cv-builder .cv-builder-active-cv-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--lpza-ink);
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .lpza-template-cv-builder .cv-builder-topbar {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .lpza-template-cv-builder .cv-builder-topbar-center {
    justify-content: flex-start;
  }
  .lpza-template-cv-builder .cv-builder-topbar-right {
    display: none;
  }
}

/* LaunchPad CV layout refinements - July 2026 */
.lpza-page .cv-entry {
  margin-bottom: 1.05rem;
  padding-bottom: 0.15rem;
}
.lpza-page .cv-entry + .cv-entry {
  margin-top: 0.85rem;
}
.lpza-page .cv-education-entry,
.lpza-page .cv-award-entry {
  margin-bottom: 1rem;
}
.lpza-page .cv-entry-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.32;
  color: #0D1B2A;
}
.lpza-page .cv-entry-meta,
.lpza-page .cv-entry-year {
  font-size: 0.68rem;
  line-height: 1.4;
  color: #718096;
  margin: 0.18rem 0 0.35rem;
}
.lpza-page .cv-entry-desc {
  font-size: 0.79rem;
  color: #4A5568;
  line-height: 1.58;
  margin: 0;
}
.lpza-page .cv-language-item,
.lpza-page .cv-hobbies-list,
.lpza-page .cv-hobby-item {
  font-size: 0.68rem;
  line-height: 1.4;
}
.lpza-page .cv-split-sidebar .cv-language-item,
.lpza-page .cv-split-sidebar .cv-hobbies-list,
.lpza-page .cv-split-sidebar .cv-hobby-item {
  font-size: 0.66rem;
  line-height: 1.35;
}
.lpza-page .cv-section {
  margin-bottom: 1.35rem;
}
.lpza-page .cv-section-title {
  margin-bottom: 0.65rem;
}
.lpza-template-cv-builder #cv-paper.cv-pages-container {
  width: 794px !important;
  max-width: 100%;
}
.lpza-template-cv-builder #cv-paper .cv-page-sheet {
  transform-origin: top center;
}


/* LaunchPad CV preview fit + new professional templates */
.lpza-template-cv-builder .cv-builder-preview-col,
.lpza-template-cv-builder .cv-preview-pane,
.lpza-template-cv-builder .cv-preview-center {
  min-width: 0;
  overflow-x: hidden;
}
.lpza-template-cv-builder #cv-paper.cv-pages-container {
  max-width: 100% !important;
  overflow: visible !important;
}
.lpza-template-cv-builder #cv-paper .cv-page-sheet {
  transform-origin: top center;
}
.lpza-template-cv-builder .tpl-polished .t-head { background: #F8FAFC; border-bottom: 4px solid #0D1B2A; height: 24%; }
.lpza-template-cv-builder .tpl-polished .ln { background: #CBD5E1; }
.lpza-template-cv-builder .tpl-ats-clean .t-head { background: #FFFFFF; border-bottom: 2px solid #CBD5E1; height: 18%; }
.lpza-template-cv-builder .tpl-ats-clean .ln { background: #D1D5DB; }
.lpza-page .cv-header-polished {
  background: #F8FAFC;
  color: #0D1B2A;
  border-bottom: 4px solid #0D1B2A;
  padding: 1.65rem 2rem;
}
.lpza-page .cv-header-polished .cv-header-photo { border: 3px solid #F4B400; }
.lpza-page .cv-header-ats-clean {
  background: #FFFFFF;
  color: #111827;
  border-bottom: 2px solid #E5E7EB;
  padding: 1.55rem 2rem 1.25rem;
}
.lpza-page .cv-header-ats-clean .cv-header-photo { border: 2px solid #E5E7EB; }
.lpza-page .cv-header-ats-clean .cv-contact-row,
.lpza-page .cv-header-polished .cv-contact-row { color: inherit !important; opacity: 0.84; }
.lpza-page .cv-header-ats-clean .cv-name-display,
.lpza-page .cv-header-polished .cv-name-display { letter-spacing: 0.01em; }
.lpza-page .cv-header-ats-clean + .cv-body .cv-section-title,
.lpza-page .cv-header-polished + .cv-body .cv-section-title {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 0.22rem;
}
.lpza-page .checkout-service-note {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  background: #F8FAFC;
  color: #4B5563;
  font-size: 0.92rem;
  line-height: 1.55;
}
.lpza-page .checkout-service-note strong {
  display: block;
  color: #0D1B2A;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}
.lpza-page .checkout-service-note ul {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
}
@media (max-width: 980px) {
  .lpza-template-cv-builder .cv-preview-center { align-items: center; }
}

/* LaunchPad fix: keep the live A4 CV preview fully inside the visible preview pane. */
.lpza-template-cv-builder .cv-builder-main,
.lpza-template-cv-builder .cv-builder-preview-col,
.lpza-template-cv-builder .cv-preview-center {
  min-width: 0 !important;
}

.lpza-template-cv-builder .cv-builder-preview-col {
  overflow: visible !important;
}

.lpza-template-cv-builder #cv-paper.cv-pages-container {
  display: block !important;
  max-width: 100% !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.lpza-template-cv-builder #cv-paper .cv-page-sheet {
  transform-origin: top center !important;
  box-sizing: border-box !important;
}

.lpza-template-cv-builder #cv-paper .cv-page-sheet,
.lpza-template-cv-builder #cv-paper .cv-page-content,
.lpza-template-cv-builder #cv-paper .cv-split-layout,
.lpza-template-cv-builder #cv-paper .cv-split-sidebar,
.lpza-template-cv-builder #cv-paper .cv-split-main,
.lpza-template-cv-builder #cv-paper .cv-section,
.lpza-template-cv-builder #cv-paper p,
.lpza-template-cv-builder #cv-paper li,
.lpza-template-cv-builder #cv-paper div {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

.lpza-template-cv-builder #cv-paper .cv-split-layout,
.lpza-template-cv-builder #cv-paper .cv-split-layout-page {
  grid-template-columns: minmax(0, 30%) minmax(0, 1fr) !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.lpza-template-cv-builder #cv-paper .cv-split-main,
.lpza-template-cv-builder #cv-paper .cv-split-sidebar {
  min-width: 0 !important;
  overflow: hidden !important;
}

.lpza-template-cv-builder #cv-paper .cv-split-main p,
.lpza-template-cv-builder #cv-paper .cv-split-main li,
.lpza-template-cv-builder #cv-paper .cv-split-main .cv-section,
.lpza-template-cv-builder #cv-paper .cv-split-contact,
.lpza-template-cv-builder #cv-paper .cv-contact-item {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

.lpza-template-cv-builder #cv-paper .cv-contact-item,
.lpza-template-cv-builder #cv-paper .cv-split-contact div {
  min-width: 0 !important;
}

.lpza-template-cv-builder .cv-builder-preview-float {
  right: 1rem !important;
  bottom: 1rem !important;
}

@media (max-width: 1180px) {
  .lpza-template-cv-builder .cv-builder-main {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr) !important;
    gap: 24px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}

@media (max-width: 980px) {
  .lpza-template-cv-builder .cv-builder-main {
    grid-template-columns: 1fr !important;
  }
}

/* LaunchPad fix: keep the CV Builder floating preview button visible in edit mode. */
.lpza-template-cv-builder .cv-builder-preview-float:not(.hidden),
body.lpza-template-cv-builder .cv-builder-preview-float:not(.hidden) {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  position: fixed !important;
  right: 1.5rem !important;
  bottom: 1.5rem !important;
  z-index: 100000 !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 132px !important;
  height: 48px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.28) !important;
}

.lpza-template-cv-builder .cv-builder-preview-float.hidden,
body.lpza-template-cv-builder .cv-builder-preview-float.hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .lpza-template-cv-builder .cv-builder-preview-float:not(.hidden),
  body.lpza-template-cv-builder .cv-builder-preview-float:not(.hidden) {
    right: 1rem !important;
    bottom: 1rem !important;
    min-width: 54px !important;
    width: 54px !important;
    height: 54px !important;
    padding: 0 !important;
  }
  .lpza-template-cv-builder .cv-builder-preview-float:not(.hidden) span,
  body.lpza-template-cv-builder .cv-builder-preview-float:not(.hidden) span {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
}

/* LaunchPad fix: keep Preview CV above the sticky footer instead of sitting on it. */
.lpza-template-cv-builder .cv-builder-preview-float:not(.hidden),
body.lpza-template-cv-builder .cv-builder-preview-float:not(.hidden) {
  bottom: calc(112px + env(safe-area-inset-bottom, 0px)) !important;
  right: 1.75rem !important;
  z-index: 100000 !important;
}

@media (max-width: 768px) {
  .lpza-template-cv-builder .cv-builder-preview-float:not(.hidden),
  body.lpza-template-cv-builder .cv-builder-preview-float:not(.hidden) {
    bottom: calc(98px + env(safe-area-inset-bottom, 0px)) !important;
    right: 1rem !important;
  }
}

@media (max-height: 620px) {
  .lpza-template-cv-builder .cv-builder-preview-float:not(.hidden),
  body.lpza-template-cv-builder .cv-builder-preview-float:not(.hidden) {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* Balanced CV pagination: split long sections by item without splitting individual rows/bars. */
.lpza-page .cv-section-fragment {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 0.85rem;
}
.lpza-page .cv-section-fragment.cv-section-continuation {
  margin-top: 0;
}
.lpza-page .cv-section-fragment .cv-skill-bar-item,
.lpza-page .cv-section-fragment .cv-entry,
.lpza-page .cv-section-fragment .cv-language-item,
.lpza-page .cv-section-fragment .cv-hobby-item {
  break-inside: avoid;
  page-break-inside: avoid;
}
.lpza-page .cv-section-fragment + .cv-section-fragment.cv-section-continuation {
  margin-top: -0.25rem;
}
.lpza-page .cv-page-sheet.cv-page-pdf-layout .cv-page-content:not(.cv-page-content-split),
.lpza-pdf-export .cv-page-content:not(.cv-page-content-split),
.lpza-pdf-capture-root .cv-page-content:not(.cv-page-content-split) {
  width: 100% !important;
  max-width: 100% !important;
}

/* LaunchPad fix: live preview header must span the full A4 page width.
   The live preview fit rules set generic div max-width:100%, which clipped
   full-bleed CV headers to the inner padded content width. Preview/PDF export
   already rendered correctly, so this is scoped to the builder live preview. */
.lpza-template-cv-builder #cv-paper .cv-page-content:not(.cv-page-content-split) > [class*="cv-header"] {
  margin: -1.5rem -2rem 1.25rem !important;
  width: calc(100% + 4rem) !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

.lpza-template-cv-builder #cv-paper .cv-page-content:not(.cv-page-content-split) > [class*="cv-header"] > div {
  max-width: none !important;
}

/* ===== CV Builder menu collapse and expanded preview space ===== */
.lpza-template-cv-builder .cv-menu-collapse-toggle {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-radius: 12px;
  padding: 11px 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
.lpza-template-cv-builder .cv-menu-collapse-toggle:hover { background: rgba(255,255,255,0.12); }
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed { grid-template-columns: 74px 1fr; }
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-rail {
  padding: 24px 12px;
  align-items: center;
  gap: 18px;
}
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-rail-head h1,
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-rail-head p,
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-rail-head .cv-rail-eyebrow,
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-manage-link,
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-tab-label,
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-menu-collapse-text { display: none !important; }
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-menu-collapse-toggle { width: 46px; height: 46px; padding: 0; }
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-section-nav { width: 100%; gap: 10px; }
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-section-tab {
  width: 46px;
  height: 46px;
  padding: 0 !important;
  justify-content: center;
  margin: 0 auto;
}
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-tab-num { margin: 0; }
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-main {
  grid-template-columns: minmax(360px, 430px) minmax(620px, 1fr);
  gap: 28px;
}
@media (max-width: 760px) {
  .lpza-template-cv-builder .cv-builder-shell,
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed { grid-template-columns: 1fr; }
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-rail {
    padding: 12px 14px;
    min-height: auto;
    position: sticky;
    top: var(--lpza-nav-height);
    z-index: 15;
  }
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-section-nav,
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-manage-link,
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-rail-head { display: none !important; }
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-menu-collapse-toggle {
    width: 100%;
    height: 40px;
  }
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-menu-collapse-text { display: inline !important; }
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-main { grid-template-columns: 1fr; }
}

/* Photo shape option */
.lpza-template-cv-builder .cv-choice-row { display: flex; gap: 10px; flex-wrap: wrap; }
.lpza-template-cv-builder .cv-choice-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--lpza-rule, #d9dee7);
  background: #fff;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lpza-ink, #0d1b2a);
  cursor: pointer;
}
.lpza-template-cv-builder .cv-choice-pill input { width: auto; margin: 0; }
.lpza-template-cv-builder .cv-header-photo.cv-photo-square,
.lpza-template-cv-builder .cv-photo-preview.cv-photo-square img { border-radius: 0 !important; border: 0 !important; box-shadow: none !important; }
.lpza-template-cv-builder .cv-header-photo.cv-photo-round { border-radius: 999px !important; }

/* New template thumbnails */
.lpza-template-cv-builder .tpl-signature-grid .t-head { background: #f7f7f7; border-top: 2px solid #555; border-bottom: 2px solid #555; height: 24%; }
.lpza-template-cv-builder .tpl-signature-grid .ln { background: #cfcfcf; }
.lpza-template-cv-builder .tpl-gold-ribbon .t-head { background: linear-gradient(120deg, #143f46 0 58%, #c7a152 58%); }
.lpza-template-cv-builder .tpl-yellow-creative .t-head { background: linear-gradient(90deg, #ffc400 0 42%, #1f2937 42%); }
.lpza-template-cv-builder .tpl-blue-column .t-head { background: linear-gradient(90deg, #f8f5ee 0 36%, #1e5b89 36% 42%, #fff 42%); }
.lpza-template-cv-builder .tpl-charcoal-sidebar .t-head { background: linear-gradient(90deg, #333 0 34%, #fff 34%); }

/* New CV templates */
.lpza-template-cv-builder .cv-signature-grid-template { color: #444; padding: 24px 30px; font-family: 'Inter', sans-serif; }
.lpza-template-cv-builder .cv-signature-top { text-align: center; border-top: 1.5px solid #555; border-bottom: 1.5px solid #555; padding: 32px 0 28px; margin-bottom: 0; position: relative; }
.lpza-template-cv-builder .cv-signature-top .cv-name-display { font-size: 2rem; letter-spacing: .24em; text-transform: uppercase; color: #4b4b4b; }
.lpza-template-cv-builder .cv-signature-top .cv-title-display { letter-spacing: .22em; text-transform: uppercase; color: #555; font-size: .9rem; }
.lpza-template-cv-builder .cv-signature-mark { position: absolute; opacity: .08; font-family: cursive; font-size: 5rem; inset: 4px 0 auto; pointer-events: none; }
.lpza-template-cv-builder .cv-signature-columns { display: grid; grid-template-columns: 32% 68%; border-bottom: 1.5px solid #555; }
.lpza-template-cv-builder .cv-signature-columns aside { border-right: 1.5px solid #555; padding: 26px 24px 20px 0; }
.lpza-template-cv-builder .cv-signature-columns main { padding: 26px 0 20px 28px; }
.lpza-template-cv-builder .cv-signature-grid-template .cv-section-title { color: #555; font-size: .9rem; letter-spacing: .22em; border-bottom-color: #aaa; }
.lpza-template-cv-builder .cv-signature-contact .cv-split-contact-item { color: #444; }

.lpza-template-cv-builder .cv-split-sidebar-gold-ribbon { background: #173f47; border-right: 10px solid #c2a056; }
.lpza-template-cv-builder .cv-split-sidebar-gold-ribbon .cv-section-title,
.lpza-template-cv-builder .cv-split-sidebar-yellow-creative .cv-section-title { border: 2px solid #c2a056; border-radius: 999px; color: #fff; text-align: center; padding: 7px 10px; }
.lpza-template-cv-builder .cv-split-sidebar-yellow-creative { background: #1f2937; border-top: 90px solid #ffc400; }
.lpza-template-cv-builder .cv-split-sidebar-blue-column { background: #f8f5ee; color: #111827; border-right: 3px solid #22608f; }
.lpza-template-cv-builder .cv-split-sidebar-blue-column .cv-name-display,
.lpza-template-cv-builder .cv-split-sidebar-blue-column .cv-title-display,
.lpza-template-cv-builder .cv-split-sidebar-blue-column .cv-split-contact,
.lpza-template-cv-builder .cv-split-sidebar-blue-column .cv-section-title { color: #111827 !important; }
.lpza-template-cv-builder .cv-split-sidebar-blue-column .cv-section-title { color: #22608f !important; }
.lpza-template-cv-builder .cv-split-sidebar-charcoal { background: #333; }
.lpza-template-cv-builder .cv-split-sidebar-charcoal .cv-section-title { color: #fff; border-bottom-color: rgba(255,255,255,.45); }
.lpza-template-cv-builder .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-yellow-creative) .cv-split-main .cv-section-title,
.lpza-template-cv-builder .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-gold-ribbon) .cv-split-main .cv-section-title { background: #c2a056; color: #fff; border-radius: 999px; text-align: center; padding: 9px 18px; border: 0; }
.lpza-template-cv-builder .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-blue-column) .cv-split-main .cv-section-title { color: #22608f; border-bottom: 2px solid #222; }
/* Blue Column readability fix: avoid white text in the pale sidebar */
.lpza-template-cv-builder .cv-split-sidebar-blue-column,
.lpza-template-cv-builder .cv-split-sidebar-blue-column *,
.lpza-pdf-export .cv-split-sidebar-blue-column,
.lpza-pdf-export .cv-split-sidebar-blue-column *,
.lpza-pdf-capture-root .cv-split-sidebar-blue-column,
.lpza-pdf-capture-root .cv-split-sidebar-blue-column *,
.lpza-page .cv-split-sidebar-blue-column,
.lpza-page .cv-split-sidebar-blue-column * {
  color: #111827 !important;
}
.lpza-template-cv-builder .cv-split-sidebar-blue-column .cv-section-title,
.lpza-pdf-export .cv-split-sidebar-blue-column .cv-section-title,
.lpza-pdf-capture-root .cv-split-sidebar-blue-column .cv-section-title,
.lpza-page .cv-split-sidebar-blue-column .cv-section-title {
  color: #1e5b89 !important;
}

.lpza-template-cv-builder .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-charcoal) .cv-split-main .cv-section-title { color: #111; border-bottom: 2px solid #111; }


/* LaunchPad update: real collapsed menu width + clearer form/preview columns */
.lpza-template-cv-builder .cv-builder-page.cv-menu-collapsed-page::before {
  width: 72px !important;
}
.lpza-template-cv-builder .cv-builder-shell.cv-layout.cv-menu-collapsed,
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed {
  grid-template-columns: 72px minmax(0, 1fr) !important;
}
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-rail {
  width: 72px !important;
  min-width: 72px !important;
  max-width: 72px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  box-sizing: border-box !important;
}
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-main {
  grid-template-columns: minmax(320px, 390px) minmax(700px, 1fr) !important;
  gap: 22px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-form-col {
  max-width: 390px !important;
}
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-preview-col,
.lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-preview-center {
  min-width: 0 !important;
  width: 100% !important;
}
@media (max-width: 1180px) {
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-main {
    grid-template-columns: minmax(300px, 360px) minmax(560px, 1fr) !important;
    gap: 18px !important;
  }
}
@media (max-width: 980px) {
  .lpza-template-cv-builder .cv-builder-page.cv-menu-collapsed-page::before { width: 0 !important; }
  .lpza-template-cv-builder .cv-builder-shell.cv-layout.cv-menu-collapsed,
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed { grid-template-columns: 1fr !important; }
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-rail {
    width: 100% !important;
    max-width: none !important;
  }
  .lpza-template-cv-builder .cv-builder-shell.cv-menu-collapsed .cv-builder-main {
    grid-template-columns: 1fr !important;
  }
}

/* Larger square photo treatment */
.lpza-template-cv-builder #cv-paper .cv-header-photo.cv-photo-square,
.lpza-pdf-export .cv-header-photo.cv-photo-square,
.lpza-pdf-capture-root .cv-header-photo.cv-photo-square,
.lpza-page .cv-header-photo.cv-photo-square {
  width: 112px !important;
  height: 112px !important;
  border-radius: 14px !important;
}
.lpza-template-cv-builder #cv-paper .cv-split-sidebar .cv-header-photo.cv-photo-square,
.lpza-pdf-export .cv-split-sidebar .cv-header-photo.cv-photo-square,
.lpza-pdf-capture-root .cv-split-sidebar .cv-header-photo.cv-photo-square,
.lpza-page .cv-split-sidebar .cv-header-photo.cv-photo-square {
  width: 112px !important;
  height: 112px !important;
  margin-left: auto;
  margin-right: auto;
}
.lpza-template-cv-builder .cv-photo-preview.cv-photo-square,
.lpza-template-cv-builder .cv-photo-preview.cv-photo-square img {
  width: 112px !important;
  height: 112px !important;
  border-radius: 14px !important;
}

/* Compact Two Column CV template */
.lpza-template-cv-builder .tpl-compact-two-col .t-head { background: linear-gradient(90deg, #f3f4f6 0 34%, #ffffff 34%); border-top: 3px solid #111827; }
.lpza-template-cv-builder .cv-split-sidebar-compact-two {
  background: #f3f4f6 !important;
  color: #111827 !important;
  border-right: 2px solid #111827;
}
.lpza-template-cv-builder .cv-split-sidebar-compact-two .cv-name-display,
.lpza-template-cv-builder .cv-split-sidebar-compact-two .cv-title-display,
.lpza-template-cv-builder .cv-split-sidebar-compact-two .cv-split-contact,
.lpza-template-cv-builder .cv-split-sidebar-compact-two .cv-split-contact *,
.lpza-template-cv-builder .cv-split-sidebar-compact-two .cv-section,
.lpza-template-cv-builder .cv-split-sidebar-compact-two .cv-section * {
  color: #111827 !important;
}
.lpza-template-cv-builder .cv-split-sidebar-compact-two .cv-section-title {
  color: #111827 !important;
  border-bottom: 2px solid #111827 !important;
  letter-spacing: .08em;
}
.lpza-template-cv-builder .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-compact-two) .cv-split-main .cv-section-title {
  color: #111827 !important;
  border-bottom: 2px solid #111827 !important;
  letter-spacing: .08em;
}
.lpza-template-cv-builder .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-compact-two) .cv-split-main {
  font-size: 0.88rem;
}

/* Square image final treatment: bigger, sharp corners, no border */
.lpza-template-cv-builder #cv-paper .cv-header-photo.cv-photo-square,
.lpza-pdf-export .cv-header-photo.cv-photo-square,
.lpza-pdf-capture-root .cv-header-photo.cv-photo-square,
.lpza-page .cv-header-photo.cv-photo-square,
.lpza-template-cv-builder .cv-photo-preview.cv-photo-square,
.lpza-template-cv-builder .cv-photo-preview.cv-photo-square img {
  width: 124px !important;
  height: 124px !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  object-fit: cover !important;
}


/* LaunchPad final fixes: no image placeholders, borderless photos, and corrected Signature Grid spacing */
.lpza-template-cv-builder #cv-paper .cv-header-photo,
.lpza-pdf-export .cv-header-photo,
.lpza-pdf-capture-root .cv-header-photo,
.lpza-page .cv-header-photo {
  border: 0 !important;
  box-shadow: none !important;
}
.lpza-template-cv-builder #cv-paper .cv-header-photo.cv-photo-round,
.lpza-pdf-export .cv-header-photo.cv-photo-round,
.lpza-pdf-capture-root .cv-header-photo.cv-photo-round,
.lpza-page .cv-header-photo.cv-photo-round,
.lpza-template-cv-builder .cv-photo-preview.cv-photo-round img {
  border-radius: 999px !important;
  border: 0 !important;
  box-shadow: none !important;
}
.lpza-template-cv-builder #cv-paper .cv-header-no-photo .cv-header-with-photo {
  grid-template-columns: 1fr !important;
}
.lpza-template-cv-builder #cv-paper .cv-header-no-photo {
  min-height: 0 !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template,
.lpza-pdf-export .cv-signature-grid-template,
.lpza-pdf-capture-root .cv-signature-grid-template,
.lpza-page .cv-signature-grid-template {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 28px 38px 30px !important;
  color: #4b4b4b !important;
  overflow: hidden !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-top,
.lpza-pdf-export .cv-signature-top,
.lpza-pdf-capture-root .cv-signature-top,
.lpza-page .cv-signature-top {
  padding: 34px 20px 30px !important;
  margin-bottom: 0 !important;
  border-top: 1.5px solid #555 !important;
  border-bottom: 1.5px solid #555 !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-top .cv-name-display,
.lpza-pdf-export .cv-signature-top .cv-name-display,
.lpza-pdf-capture-root .cv-signature-top .cv-name-display,
.lpza-page .cv-signature-top .cv-name-display {
  font-size: 1.65rem !important;
  line-height: 1.15 !important;
  letter-spacing: .22em !important;
  overflow-wrap: anywhere !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-columns,
.lpza-pdf-export .cv-signature-columns,
.lpza-pdf-capture-root .cv-signature-columns,
.lpza-page .cv-signature-columns {
  display: grid !important;
  grid-template-columns: minmax(0, 31%) minmax(0, 69%) !important;
  width: 100% !important;
  border-bottom: 1.5px solid #555 !important;
  overflow: hidden !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-columns aside,
.lpza-pdf-export .cv-signature-columns aside,
.lpza-pdf-capture-root .cv-signature-columns aside,
.lpza-page .cv-signature-columns aside {
  padding: 24px 18px 22px 0 !important;
  border-right: 1.5px solid #555 !important;
  min-width: 0 !important;
  overflow: hidden !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-columns main,
.lpza-pdf-export .cv-signature-columns main,
.lpza-pdf-capture-root .cv-signature-columns main,
.lpza-page .cv-signature-columns main {
  padding: 24px 0 22px 24px !important;
  min-width: 0 !important;
  overflow: hidden !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template .cv-section,
.lpza-pdf-export .cv-signature-grid-template .cv-section,
.lpza-pdf-capture-root .cv-signature-grid-template .cv-section,
.lpza-page .cv-signature-grid-template .cv-section {
  margin-bottom: 16px !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template .cv-section-title,
.lpza-pdf-export .cv-signature-grid-template .cv-section-title,
.lpza-pdf-capture-root .cv-signature-grid-template .cv-section-title,
.lpza-page .cv-signature-grid-template .cv-section-title {
  font-size: .74rem !important;
  line-height: 1.2 !important;
  letter-spacing: .22em !important;
  padding-bottom: 8px !important;
  margin-bottom: 10px !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template .cv-contact-item,
.lpza-pdf-export .cv-signature-grid-template .cv-contact-item,
.lpza-pdf-capture-root .cv-signature-grid-template .cv-contact-item,
.lpza-page .cv-signature-grid-template .cv-contact-item {
  display: grid !important;
  grid-template-columns: 14px minmax(0, 1fr) !important;
  gap: 7px !important;
  align-items: start !important;
  font-size: .72rem !important;
  line-height: 1.35 !important;
  margin: 0 0 8px !important;
  color: #444 !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template .cv-contact-item span,
.lpza-pdf-export .cv-signature-grid-template .cv-contact-item span,
.lpza-pdf-capture-root .cv-signature-grid-template .cv-contact-item span,
.lpza-page .cv-signature-grid-template .cv-contact-item span {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template .cv-contact-icon,
.lpza-pdf-export .cv-signature-grid-template .cv-contact-icon,
.lpza-pdf-capture-root .cv-signature-grid-template .cv-contact-icon,
.lpza-page .cv-signature-grid-template .cv-contact-icon {
  width: 10px !important;
  height: 10px !important;
  margin-top: 2px !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template .cv-entry-title,
.lpza-pdf-export .cv-signature-grid-template .cv-entry-title,
.lpza-pdf-capture-root .cv-signature-grid-template .cv-entry-title,
.lpza-page .cv-signature-grid-template .cv-entry-title {
  font-size: .82rem !important;
  line-height: 1.35 !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template .cv-entry-meta,
.lpza-pdf-export .cv-signature-grid-template .cv-entry-meta,
.lpza-pdf-capture-root .cv-signature-grid-template .cv-entry-meta,
.lpza-page .cv-signature-grid-template .cv-entry-meta {
  font-size: .68rem !important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template p,
.lpza-pdf-export .cv-signature-grid-template p,
.lpza-pdf-capture-root .cv-signature-grid-template p,
.lpza-page .cv-signature-grid-template p {
  font-size: .78rem !important;
  line-height: 1.55 !important;
}

/* CV Builder sortable repeat entries */
.cv-repeat-entry-tools{display:flex;align-items:center;gap:8px;margin-left:auto}
.cv-drag-handle{width:34px;height:34px;border:1px solid rgba(15,23,42,.14);border-radius:10px;background:#fff;color:#64748b;cursor:grab;font-weight:800;line-height:1;display:inline-flex;align-items:center;justify-content:center}
.cv-drag-handle:active{cursor:grabbing}
.cv-sortable-entry{transition:box-shadow .18s ease,transform .18s ease,opacity .18s ease}
.cv-sortable-entry.cv-dragging{opacity:.55;box-shadow:0 16px 34px rgba(15,23,42,.18);transform:scale(.995)}
#experience-entries,#education-entries,#awards-entries{min-height:20px}
.cv-repeat-entry-header{gap:10px}
.cv-repeat-entry .form-row{align-items:flex-start}
@media (max-width:700px){.cv-repeat-entry .form-row{flex-direction:column}.cv-repeat-entry-tools{gap:6px}.cv-drag-handle{width:32px;height:32px}}

/* CV Builder entry accordions and drag/drop feedback */
.cv-repeat-entry-header{display:flex;align-items:center;gap:10px;}
.cv-entry-chevron{width:32px;height:32px;border:1px solid #dbe3ee;border-radius:10px;background:#fff;color:#0f172a;font-size:18px;line-height:1;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;transition:transform .18s ease,background .18s ease,border-color .18s ease;flex:0 0 auto;}
.cv-entry-chevron:hover{background:#f8fafc;border-color:#cbd5e1;}
.cv-repeat-entry:not(.is-collapsed) .cv-entry-chevron{transform:rotate(180deg);}
.cv-repeat-entry-summary{font-size:13px;color:#64748b;font-weight:600;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;flex:1;}
.cv-repeat-entry.is-collapsed .cv-repeat-entry-body{display:none;}
.cv-repeat-entry-body{padding-top:12px;}
.cv-sortable-entry{position:relative;transition:box-shadow .15s ease,transform .15s ease,border-color .15s ease;}
.cv-sortable-entry.cv-dragging{opacity:.55;box-shadow:0 18px 40px rgba(15,23,42,.18);transform:scale(.995);}
.cv-sortable-entry.cv-drop-before::before,.cv-sortable-entry.cv-drop-after::after{content:"";position:absolute;left:10px;right:10px;height:4px;background:#f6b600;border-radius:999px;box-shadow:0 0 0 3px rgba(246,182,0,.18);z-index:5;}
.cv-sortable-entry.cv-drop-before::before{top:-10px;}
.cv-sortable-entry.cv-drop-after::after{bottom:-10px;}
.cv-sortable-entry.cv-drop-before,.cv-sortable-entry.cv-drop-after{border-color:#f6b600!important;}
.cv-drag-handle{cursor:grab;}
.cv-drag-handle:active{cursor:grabbing;}
@media (max-width:700px){.cv-repeat-entry-summary{max-width:42vw}.cv-entry-chevron{width:30px;height:30px}}

/* LaunchPad CV builder: cleaner collapsible repeat entries */
.cv-entry-chevron{display:none!important;}
.cv-repeat-entry-header{cursor:pointer;align-items:center;gap:10px;}
.cv-repeat-entry-header::after{content:none!important;display:none!important;}
.cv-repeat-entry:not(.is-collapsed) .cv-repeat-entry-header::after{content:none!important;display:none!important;}
.cv-repeat-entry-summary{color:#64748b;font-size:12px;font-weight:600;}
.cv-repeat-entry-title{font-weight:800;color:#0f172a;}
.cv-repeat-entry.is-collapsed{background:#fff;}
.cv-repeat-entry:not(.is-collapsed){box-shadow:0 12px 30px rgba(15,23,42,.08);}
.cv-repeat-entry-tools{margin-left:0;}
.cv-drag-handle{cursor:grab;}
.cv-dragging .cv-drag-handle{cursor:grabbing;}

/* LaunchPad requested collapsed entry labels: no helper pills and preserve user capitalization */
.cv-repeat-entry-header::after{content:none!important;display:none!important;}
.cv-repeat-entry-title{text-transform:none!important;letter-spacing:0!important;}


/* LaunchPad final CV flow fixes */
.lpza-template-cv-builder .cv-force-one-page-toggle{
  display:flex;align-items:center;gap:.65rem;margin:1rem 0 .25rem;padding:.85rem 1rem;border:1px solid rgba(13,27,42,.12);border-radius:14px;background:#fff;color:#0d1b2a;font-size:.9rem;font-weight:700;
}
.lpza-template-cv-builder .cv-force-one-page-toggle input{width:auto;margin:0;accent-color:#173f47;}
.lpza-template-cv-builder .cv-force-one-page-note{font-size:.78rem;color:#64748b;margin:.2rem 0 1rem;}
.lpza-template-cv-builder .cv-page-number,
.lpza-page .cv-page-number{
  right:24px!important;bottom:14px!important;background:transparent!important;border-radius:0!important;padding:0!important;font-size:10px!important;color:#667085!important;text-align:right!important;font-family:Inter,Arial,sans-serif!important;font-weight:600!important;
}
.lpza-template-cv-builder .cv-force-one-page-sheet{overflow:hidden!important;}
.lpza-template-cv-builder .cv-force-one-page-content{overflow:hidden!important;}
.lpza-template-cv-builder .cv-force-one-page-scaled{transform-origin:top left!important;}
/* Gold Ribbon: remove filled pill backgrounds on main section titles to save vertical space */
.lpza-template-cv-builder .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-gold-ribbon) .cv-split-main .cv-section-title,
.lpza-pdf-export .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-gold-ribbon) .cv-split-main .cv-section-title,
.lpza-pdf-capture-root .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-gold-ribbon) .cv-split-main .cv-section-title,
.lpza-page .cv-paper-split .cv-split-layout:has(.cv-split-sidebar-gold-ribbon) .cv-split-main .cv-section-title{
  background:transparent!important;color:#173f47!important;border-radius:0!important;text-align:left!important;padding:0 0 7px!important;border:0!important;border-bottom:2px solid #c2a056!important;margin-bottom:12px!important;
}
/* Signature Grid live preview: fit inside A4 host and keep bottom from clipping */
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template{padding-bottom:42px!important;}
.lpza-template-cv-builder #cv-paper .cv-signature-columns{min-height:0!important;}

/* Force-to-one-page should not visually shrink CVs that already fit one page. */
.lpza-template-cv-builder .cv-force-one-page-content:not(.cv-force-one-page-scaled) > *{
  transform:none!important;
  width:100%!important;
}
.lpza-template-cv-builder .cv-force-one-page-scaled .cv-split-layout{
  min-height:auto!important;
}

/* Signature Grid live preview bottom safety: do not add artificial bottom padding or clip the last row. */
.lpza-template-cv-builder #cv-paper .cv-signature-grid-template{
  padding-bottom:18px!important;
  overflow:visible!important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-columns{
  overflow:visible!important;
  border-bottom:1.5px solid #555!important;
}
.lpza-template-cv-builder #cv-paper .cv-signature-columns aside,
.lpza-template-cv-builder #cv-paper .cv-signature-columns main{
  overflow:visible!important;
  padding-bottom:14px!important;
}
.lpza-template-cv-builder #cv-paper .cv-page-content{
  overflow:visible!important;
}
.lpza-template-cv-builder #cv-paper .cv-page-sheet{
  overflow:visible!important;
}

/* Force one-page correction: keep the old behavior, but do not compress CVs that already fit. */
.lpza-template-cv-builder .cv-force-one-page-sheet{
  position:relative!important;
  background:#fff!important;
}
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-bg::before,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-bg::before,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-bg::before,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-bg::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:var(--force-sidebar-width,32%);
  background:var(--force-sidebar-bg,#173f47);
  z-index:3;
  pointer-events:none;
}
.lpza-template-cv-builder .cv-force-one-page-content,
.lpza-pdf-export .cv-force-one-page-content,
.lpza-pdf-capture-root .cv-force-one-page-content,
.lpza-page .cv-force-one-page-content{
  position:relative!important;
  z-index:1!important;
}
.lpza-template-cv-builder .cv-force-one-page-content:not(.cv-force-one-page-scaled) > *,
.lpza-pdf-export .cv-force-one-page-content:not(.cv-force-one-page-scaled) > *,
.lpza-pdf-capture-root .cv-force-one-page-content:not(.cv-force-one-page-scaled) > *,
.lpza-page .cv-force-one-page-content:not(.cv-force-one-page-scaled) > *{
  transform:none!important;
  width:100%!important;
}

/* Force-fit correction: extend any split template divider/border to the page bottom. */
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-divider::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:var(--force-sidebar-divider-left,var(--force-sidebar-width,32%));
  width:var(--force-sidebar-divider-width,1px);
  background:var(--force-sidebar-divider-color,transparent);
  z-index:3;
  pointer-events:none;
}

/* Force-fit visibility and divider correction */
.lpza-template-cv-builder .cv-force-one-page-toggle[aria-hidden="true"],
.lpza-template-cv-builder .cv-force-one-page-note[aria-hidden="true"]{display:none!important;}
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-divider::after{z-index:4!important;}
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-bg::before,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-bg::before,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-bg::before,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-bg::before{z-index:0!important;}

/* Final force-fit structural fix: make split template decoration belong to the page,
   not to the scaled/sidebar content. This keeps the vertical divider and sidebar
   background running to the physical A4 bottom when Force CV to fit one page is on. */
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-bg,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-bg,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-bg,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-bg{
  position:relative!important;
  overflow:hidden!important;
  background:#fff!important;
}
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-bg::before,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-bg::before,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-bg::before,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-bg::before{
  content:""!important;
  position:absolute!important;
  top:0!important;
  bottom:0!important;
  left:0!important;
  width:var(--force-sidebar-width,32%)!important;
  background:var(--force-sidebar-bg,#173f47)!important;
  z-index:0!important;
  pointer-events:none!important;
}
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-divider::after{
  content:""!important;
  position:absolute!important;
  top:0!important;
  bottom:0!important;
  left:var(--force-sidebar-divider-left,var(--force-sidebar-width,32%))!important;
  width:var(--force-sidebar-divider-width,1px)!important;
  min-width:1px!important;
  background:var(--force-sidebar-divider-color,#1f2937)!important;
  z-index:30!important;
  pointer-events:none!important;
}
.lpza-template-cv-builder .cv-force-one-page-sheet .cv-force-one-page-content,
.lpza-pdf-export .cv-force-one-page-sheet .cv-force-one-page-content,
.lpza-pdf-capture-root .cv-force-one-page-sheet .cv-force-one-page-content,
.lpza-page .cv-force-one-page-sheet .cv-force-one-page-content{
  position:relative!important;
  z-index:5!important;
}
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-bg .cv-split-sidebar,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-bg .cv-split-sidebar,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-bg .cv-split-sidebar,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-bg .cv-split-sidebar{
  background:transparent!important;
}

/* LaunchPad structural force-fit divider rebuild */
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-bg,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-bg,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-bg,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-bg{
  position:relative!important;
  overflow:hidden!important;
}
.lpza-template-cv-builder .cv-force-one-page-sheet .cv-force-one-page-structural-divider,
.lpza-pdf-export .cv-force-one-page-sheet .cv-force-one-page-structural-divider,
.lpza-pdf-capture-root .cv-force-one-page-sheet .cv-force-one-page-structural-divider,
.lpza-page .cv-force-one-page-sheet .cv-force-one-page-structural-divider{
  position:absolute!important;
  top:0!important;
  bottom:0!important;
  height:100%!important;
  min-height:100%!important;
  display:block!important;
  background:var(--force-sidebar-divider-color,#1f2937)!important;
  z-index:999!important;
  pointer-events:none!important;
}
/* Remove content-height borders/dividers inside the scaled content. The page-level
   divider above is the only divider when force-fit is active. */
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-bg .cv-split-sidebar,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-bg .cv-split-sidebar,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-bg .cv-split-sidebar,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-bg .cv-split-sidebar{
  border-right:0!important;
  box-shadow:none!important;
}
.lpza-template-cv-builder .cv-force-one-page-sheet .cv-split-layout::before,
.lpza-template-cv-builder .cv-force-one-page-sheet .cv-split-layout::after,
.lpza-pdf-export .cv-force-one-page-sheet .cv-split-layout::before,
.lpza-pdf-export .cv-force-one-page-sheet .cv-split-layout::after,
.lpza-pdf-capture-root .cv-force-one-page-sheet .cv-split-layout::before,
.lpza-pdf-capture-root .cv-force-one-page-sheet .cv-split-layout::after,
.lpza-page .cv-force-one-page-sheet .cv-split-layout::before,
.lpza-page .cv-force-one-page-sheet .cv-split-layout::after{
  display:none!important;
}
/* Keep the old pseudo-element as backup, but below the real divider. */
.lpza-template-cv-builder .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-pdf-export .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-pdf-capture-root .cv-force-one-page-sheet.cv-force-one-page-split-divider::after,
.lpza-page .cv-force-one-page-sheet.cv-force-one-page-split-divider::after{
  top:0!important;
  bottom:0!important;
  height:100%!important;
  z-index:998!important;
}

/* CV content font size control */
.lpza-template-cv-builder .cv-font-size-control{
  margin:0 0 .9rem;padding:.85rem 1rem;border:1px solid rgba(13,27,42,.12);border-radius:14px;background:#fff;
}
.lpza-template-cv-builder .cv-font-size-control-top{margin-top:0;}
.lpza-template-cv-builder .cv-font-size-control-head{display:flex;align-items:center;justify-content:flex-start;gap:1rem;margin-bottom:.48rem;}
.lpza-template-cv-builder .cv-font-size-control label{margin:0;color:#0d1b2a;font-size:.84rem;font-weight:800;white-space:nowrap;}
.lpza-template-cv-builder .cv-font-size-sample{display:none!important;}
.lpza-template-cv-builder .cv-font-size-slider-row{display:flex;align-items:center;gap:.75rem;}
.lpza-template-cv-builder #cv-content-font-size-value{font-size:.82rem;font-weight:800;color:#173f47;min-width:42px;text-align:right;}
.lpza-template-cv-builder #cv-content-font-size{width:100%;accent-color:#173f47;}
.lpza-template-cv-builder .cv-font-size-note{font-size:.78rem;color:#64748b;margin:.35rem 0 0;}
@media (max-width:560px){
  .lpza-template-cv-builder .cv-font-size-control-head{align-items:flex-start;flex-direction:column;gap:.2rem;}
  .lpza-template-cv-builder .cv-font-size-sample{text-align:left;}
}

.cv-font-size-target .cv-section-title{font-size:calc(.9rem * var(--lpza-cv-content-font-scale, 1))!important;}
.cv-font-size-target .cv-entry-title{font-size:calc(.86rem * var(--lpza-cv-content-font-scale, 1))!important;}
.cv-font-size-target .cv-entry-meta,
.cv-font-size-target .cv-entry-year{font-size:calc(.68rem * var(--lpza-cv-content-font-scale, 1))!important;}
.cv-font-size-target .cv-entry-desc,
.cv-font-size-target p,
.cv-font-size-target li{font-size:calc(.79rem * var(--lpza-cv-content-font-scale, 1))!important;}
.cv-font-size-target .cv-skill-bar-label,
.cv-font-size-target .cv-language-item,
.cv-font-size-target .cv-hobbies-list,
.cv-font-size-target .cv-hobby-item{font-size:calc(.68rem * var(--lpza-cv-content-font-scale, 1))!important;}

.lpza-page .cv-font-size-target .cv-section-title,
.lpza-template-cv-builder .cv-font-size-target .cv-section-title,
.lpza-pdf-export .cv-font-size-target .cv-section-title,
.lpza-pdf-capture-root .cv-font-size-target .cv-section-title{
  font-size:calc(.9rem * var(--lpza-cv-content-font-scale, 1))!important;
}
.lpza-page .cv-font-size-target .cv-entry-title,
.lpza-template-cv-builder .cv-font-size-target .cv-entry-title,
.lpza-pdf-export .cv-font-size-target .cv-entry-title,
.lpza-pdf-capture-root .cv-font-size-target .cv-entry-title{
  font-size:calc(.86rem * var(--lpza-cv-content-font-scale, 1))!important;
}
.lpza-page .cv-font-size-target .cv-entry-meta,
.lpza-page .cv-font-size-target .cv-entry-year,
.lpza-template-cv-builder .cv-font-size-target .cv-entry-meta,
.lpza-template-cv-builder .cv-font-size-target .cv-entry-year,
.lpza-pdf-export .cv-font-size-target .cv-entry-meta,
.lpza-pdf-export .cv-font-size-target .cv-entry-year,
.lpza-pdf-capture-root .cv-font-size-target .cv-entry-meta,
.lpza-pdf-capture-root .cv-font-size-target .cv-entry-year{
  font-size:calc(.68rem * var(--lpza-cv-content-font-scale, 1))!important;
}
.lpza-page .cv-font-size-target .cv-entry-desc,
.lpza-page .cv-font-size-target p,
.lpza-template-cv-builder .cv-font-size-target .cv-entry-desc,
.lpza-template-cv-builder .cv-font-size-target p,
.lpza-pdf-export .cv-font-size-target .cv-entry-desc,
.lpza-pdf-export .cv-font-size-target p,
.lpza-pdf-capture-root .cv-font-size-target .cv-entry-desc,
.lpza-pdf-capture-root .cv-font-size-target p{
  font-size:calc(.79rem * var(--lpza-cv-content-font-scale, 1))!important;
}
.lpza-page .cv-font-size-target .cv-skill-bar-label,
.lpza-page .cv-font-size-target .cv-language-item,
.lpza-page .cv-font-size-target .cv-hobbies-list,
.lpza-page .cv-font-size-target .cv-hobby-item,
.lpza-template-cv-builder .cv-font-size-target .cv-skill-bar-label,
.lpza-template-cv-builder .cv-font-size-target .cv-language-item,
.lpza-template-cv-builder .cv-font-size-target .cv-hobbies-list,
.lpza-template-cv-builder .cv-font-size-target .cv-hobby-item,
.lpza-pdf-export .cv-font-size-target .cv-skill-bar-label,
.lpza-pdf-export .cv-font-size-target .cv-language-item,
.lpza-pdf-export .cv-font-size-target .cv-hobbies-list,
.lpza-pdf-export .cv-font-size-target .cv-hobby-item,
.lpza-pdf-capture-root .cv-font-size-target .cv-skill-bar-label,
.lpza-pdf-capture-root .cv-font-size-target .cv-language-item,
.lpza-pdf-capture-root .cv-font-size-target .cv-hobbies-list,
.lpza-pdf-capture-root .cv-font-size-target .cv-hobby-item{
  font-size:calc(.68rem * var(--lpza-cv-content-font-scale, 1))!important;
}
