.rb-root,
.rb-root *,
.rb-root *::before,
.rb-root *::after { box-sizing: border-box; margin: 0; padding: 0; }

.rb-root {
  font-family: 'DM Sans', system-ui, sans-serif;
  height: 100vh; display: flex; flex-direction: column;
  background: #dce2eb; color: #1a1a2e;
  font-size: 13px; line-height: 1.5; overflow: hidden;
}

/* — Header — */
.rb-hdr { background: #003366; color: #fff; height: 46px; display: flex; align-items: center; flex-shrink: 0; }
.rb-hdr-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; }
.rb-logo { color: #fff; font-size: 18px; font-weight: 700; text-decoration: none; letter-spacing: -.3px; }
.rb-nav { display: flex; gap: 20px; }
.rb-nav a { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 500; text-decoration: none; transition: color .15s; }
.rb-nav a:hover { color: #fff; }

/* — Toolbar — */
.rb-bar {
  background: #001f44; height: 52px; display: flex; align-items: center;
  padding: 0 14px; gap: 6px; flex-shrink: 0; overflow-x: auto;
}
.rb-bar::-webkit-scrollbar { height: 3px; }
.rb-bar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 2px; }
.rb-bg { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.rb-sep { width: 1px; height: 28px; background: rgba(255,255,255,.14); margin: 0 5px; flex-shrink: 0; }
.rb-lbl { color: rgba(255,255,255,.5); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; white-space: nowrap; }
.rb-tbtn {
  padding: 4px 12px; border-radius: 5px; border: 1.5px solid rgba(255,255,255,.25);
  background: transparent; color: rgba(255,255,255,.82); font-weight: 600;
  cursor: pointer; font-size: 11px; white-space: nowrap; transition: all .15s; font-family: inherit;
}
.rb-tbtn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.45); color: #fff; }
.rb-tbtn.rb-on { background: #fff; color: #003366; border-color: #fff; }

/* colour swatches */
.rb-sw { width: 20px; height: 20px; border-radius: 50%; cursor: pointer; border: 2.5px solid transparent; transition: transform .15s, border-color .15s; flex-shrink: 0; }
.rb-sw:hover { transform: scale(1.2); }
.rb-sw.rb-on { border-color: #fff; box-shadow: 0 0 0 1.5px rgba(255,255,255,.35); }
.rb-cpick { width: 20px; height: 20px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.3); cursor: pointer; padding: 0; background: none; flex-shrink: 0; overflow: hidden; }

/* font-size controls */
.rb-fzctrl { display: flex; align-items: center; gap: 4px; }
.rb-fzbtn {
  width: 24px; height: 24px; border-radius: 4px; border: 1.5px solid rgba(255,255,255,.28);
  background: transparent; color: #fff; font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s; line-height: 1; font-family: inherit; flex-shrink: 0;
}
.rb-fzbtn:hover { background: rgba(255,255,255,.15); }
.rb-fzval { color: #fff; font-size: 11px; font-weight: 700; min-width: 28px; text-align: center; }

/* multi-page toggle */
.rb-togwrap { display: flex; align-items: center; gap: 5px; }
.rb-tog { position: relative; width: 32px; height: 18px; cursor: pointer; flex-shrink: 0; }
.rb-tog input { opacity: 0; width: 0; height: 0; position: absolute; }
.rb-tog .rb-sl { position: absolute; inset: 0; background: rgba(255,255,255,.18); border-radius: 18px; transition: .25s; }
.rb-tog .rb-sl::before { content: ''; position: absolute; width: 12px; height: 12px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .25s; }
.rb-tog input:checked + .rb-sl { background: rgba(80,180,255,.65); }
.rb-tog input:checked + .rb-sl::before { transform: translateX(14px); background: #001f44; }

/* action buttons */
.rb-actbtn {
  background: #fff; color: #003366; border: none; padding: 6px 14px; border-radius: 5px;
  font-weight: 700; cursor: pointer; font-size: 11px; display: flex; align-items: center;
  gap: 4px; white-space: nowrap; transition: opacity .15s; font-family: inherit;
}
.rb-actbtn:hover { opacity: .88; }
.rb-actbtn:disabled { opacity: .4; cursor: not-allowed; }
.rb-actbtn-ol {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35);
  padding: 5px 14px; border-radius: 5px; font-weight: 600; cursor: pointer;
  font-size: 11px; display: flex; align-items: center; gap: 4px;
  white-space: nowrap; transition: all .15s; font-family: inherit;
}
.rb-actbtn-ol:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

/* — App layout — */
.rb-app { display: grid; grid-template-columns: 318px 1fr; flex: 1; overflow: hidden; }

/* — Form panel — */
.rb-fp { background: #f4f5f8; border-right: 1px solid #ccd4e0; overflow-y: auto; display: flex; flex-direction: column; }
.rb-fp::-webkit-scrollbar { width: 4px; }
.rb-fp::-webkit-scrollbar-thumb { background: #c8d0dc; border-radius: 4px; }
.rb-fph { padding: 10px 15px 8px; border-bottom: 1px solid #ccd4e0; background: #fff; position: sticky; top: 0; z-index: 5; }
.rb-fph h2 { font-size: 13px; font-weight: 700; color: #003366; }
.rb-fph p { font-size: 11px; color: #6b7280; margin-top: 1px; }
.rb-fpb { padding: 10px 15px 4px; flex: 1; }
.rb-st { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .9px; color: #003366; margin: 12px 0 6px; display: flex; align-items: center; gap: 6px; }
.rb-st::after { content: ''; flex: 1; height: 1px; background: #ccd4e0; }
.rb-r2 { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 7px; }
.rb-fg { display: flex; flex-direction: column; gap: 2px; margin-bottom: 7px; }
.rb-fg label { font-size: 9.5px; font-weight: 700; color: #8a9bb0; text-transform: uppercase; letter-spacing: .5px; }
.rb-fg input,
.rb-fg textarea {
  border: 1.5px solid #ccd4e0; border-radius: 5px; padding: 6px 9px;
  font-size: 11.5px; font-family: 'DM Sans', system-ui, sans-serif;
  background: #fff; color: #1a1a2e; line-height: 1.45; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.rb-fg input:focus,
.rb-fg textarea:focus { border-color: #003366; outline: none; box-shadow: 0 0 0 3px rgba(0,51,102,.07); }
.rb-fg textarea { resize: vertical; min-height: 60px; }
.rb-ec { background: #fff; border: 1.5px solid #ccd4e0; border-radius: 6px; padding: 9px 10px; margin-bottom: 8px; position: relative; }
.rb-rmv { position: absolute; top: 8px; right: 8px; background: #fee2e2; color: #dc2626; border: none; border-radius: 4px; padding: 2px 8px; cursor: pointer; font-size: 9.5px; font-weight: 700; font-family: inherit; transition: all .15s; }
.rb-rmv:hover { background: #dc2626; color: #fff; }
.rb-addb { background: #003366; color: #fff; border: none; border-radius: 5px; padding: 5px 13px; cursor: pointer; font-size: 11px; font-weight: 600; margin-top: 2px; font-family: inherit; transition: opacity .15s; }
.rb-addb:hover { opacity: .82; }
.rb-skrow { display: flex; gap: 6px; margin-bottom: 7px; }
.rb-skrow input { flex: 1; border: 1.5px solid #ccd4e0; border-radius: 5px; padding: 6px 9px; font-size: 11.5px; font-family: 'DM Sans', system-ui, sans-serif; background: #fff; color: #1a1a2e; transition: border-color .15s; }
.rb-skrow input:focus { border-color: #003366; outline: none; }
.rb-skrow button { background: #003366; color: #fff; border: none; border-radius: 5px; padding: 6px 11px; cursor: pointer; font-size: 11px; font-weight: 700; font-family: inherit; }
.rb-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 7px; }
.rb-chip { background: #e8eef7; border: 1px solid #c5d5ea; border-radius: 4px; padding: 3px 8px; font-size: 11px; color: #003366; display: flex; align-items: center; gap: 3px; }
.rb-chipx { cursor: pointer; color: #dc2626; font-weight: 700; font-size: 13px; line-height: 1; background: none; border: none; padding: 0; font-family: inherit; }

/* Photo upload */
.rb-photo-box {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
  background: #fff; border: 1.5px dashed #ccd4e0; border-radius: 6px; padding: 8px 10px;
}
.rb-photo-preview {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 2px solid #ccd4e0; flex-shrink: 0; background: #e8eef7;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.rb-photo-preview svg { opacity: .35; }
.rb-photo-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.rb-photo-info { flex: 1; }
.rb-photo-info p { font-size: 11px; color: #6b7280; margin-bottom: 5px; }
.rb-photo-btn { background: #003366; color: #fff; border: none; border-radius: 4px; padding: 5px 10px; font-size: 10.5px; font-weight: 600; cursor: pointer; font-family: inherit; }
.rb-photo-rm { background: #fee2e2; color: #dc2626; border: none; border-radius: 4px; padding: 5px 10px; font-size: 10.5px; font-weight: 600; cursor: pointer; font-family: inherit; margin-left: 5px; }
.rb-photo-pos { display: flex; gap: 5px; margin-top: 5px; align-items: center; }
.rb-photo-pos label { font-size: 9.5px; font-weight: 700; color: #8a9bb0; text-transform: uppercase; letter-spacing: .4px; }
.rb-photo-pos select { border: 1.5px solid #ccd4e0; border-radius: 4px; padding: 3px 6px; font-size: 11px; font-family: inherit; background: #fff; color: #1a1a2e; }

/* — Preview panel — */
.rb-pv { background: #6e839c; overflow-y: auto; display: flex; flex-direction: column; align-items: center; padding: 20px 18px; }
.rb-pv::-webkit-scrollbar { width: 6px; }
.rb-pv::-webkit-scrollbar-thumb { background: rgba(255,255,255,.22); border-radius: 4px; }
.rb-pvlbl { color: rgba(255,255,255,.55); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.3px; margin-bottom: 12px; align-self: flex-start; }
.rb-pages { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 740px; }
.rb-page { background: #fff; box-shadow: 0 6px 36px rgba(0,0,0,.3); width: 100%; }
.rb-empty { background: #fff; border-radius: 10px; padding: 60px 30px; text-align: center; color: #6b7280; width: 100%; max-width: 740px; box-shadow: 0 2px 16px rgba(0,0,0,.1); }
.rb-empty h3 { color: #003366; font-size: 20px; margin-bottom: 8px; }
.rb-empty p { font-size: 13px; }

/* pdf loading overlay */
.rb-pdfload {
  display: none; position: fixed; inset: 0; background: rgba(0,0,30,.6);
  z-index: 9999; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
}
.rb-pdfload.rb-show { display: flex; }
.rb-pdfload-box { background: #fff; border-radius: 10px; padding: 28px 36px; text-align: center; box-shadow: 0 8px 40px rgba(0,0,0,.25); }
.rb-pdfload-box p { font-size: 14px; font-weight: 600; color: #003366; margin-top: 10px; }
.rb-spinner { width: 42px; height: 42px; border: 4px solid #e8eef7; border-top-color: #003366; border-radius: 50%; animation: rb-spin .8s linear infinite; margin: 0 auto; }
@keyframes rb-spin { to { transform: rotate(360deg); } }

/* — Footer — */
.rb-ftr { background: #001630; color: rgba(255,255,255,.6); text-align: center; padding: 7px; font-size: 10.5px; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE  (≤ 768px)
   ═══════════════════════════════════════════════════════════ */

/* Mobile tab bar */
.rb-mob-tabs {
  display: none; background: #002244; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rb-mob-tabs-inner { display: flex; align-items: stretch; }
.rb-mob-tab {
  flex: 1; padding: 10px 6px 9px; background: transparent; border: none;
  color: rgba(255,255,255,.58); font-size: 11px; font-weight: 600;
  cursor: pointer; font-family: inherit; display: flex; flex-direction: column;
  align-items: center; gap: 3px; border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.rb-mob-tab.rb-on { color: #fff; border-bottom-color: #fff; }

/* Mobile settings drawer */
.rb-mob-settings {
  display: none; background: #001f44; padding: 12px 14px 14px;
  flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,.08); overflow-x: auto;
}
.rb-mob-settings.rb-open { display: block; }
.rb-mob-set-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 10px;
}
.rb-mob-set-row:last-child { margin-bottom: 0; }
.rb-mob-set-label {
  color: rgba(255,255,255,.5); font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px; min-width: 60px; flex-shrink: 0;
}

/* Mobile bottom action bar */
.rb-mob-actions {
  display: none; background: #002244; flex-shrink: 0;
  padding: 8px 12px; gap: 8px; border-top: 1px solid rgba(255,255,255,.1);
}
.rb-mob-act {
  flex: 1; background: #fff; color: #003366; border: none; border-radius: 6px;
  padding: 10px 8px; font-weight: 700; cursor: pointer; font-size: 12px;
  font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: opacity .15s;
}
.rb-mob-act:hover { opacity: .88; }
.rb-mob-act:disabled { opacity: .4; cursor: not-allowed; }
.rb-mob-act-ol {
  flex: 1; background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.35); border-radius: 6px;
  padding: 9px 8px; font-weight: 600; cursor: pointer; font-size: 12px;
  font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: all .15s;
}

@media (max-width: 768px) {
  .rb-root { overflow: hidden; }
  .rb-hdr { height: 42px; }
  .rb-hdr-inner { padding: 0 14px; }
  .rb-logo { font-size: 15px; }
  .rb-nav { display: none; }
  .rb-bar { display: none; }
  .rb-mob-tabs { display: block; }
  .rb-mob-actions { display: flex; }
  .rb-ftr { display: none; }
  .rb-app {
    display: flex; flex-direction: column; flex: 1; overflow: hidden;
    grid-template-columns: none;
  }
  .rb-fp {
    display: none; flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
    border-right: none; flex-direction: column;
  }
  .rb-fp.rb-mob-vis { display: flex; }
  .rb-pv {
    display: none; flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 12px 8px;
  }
  .rb-pv.rb-mob-vis { display: flex; }
  .rb-fph { padding: 9px 13px 7px; }
  .rb-fpb { padding: 9px 13px 4px; }
  /* Prevent iOS input zoom: keep font ≥ 16px for inputs */
  .rb-fg input, .rb-fg textarea, .rb-skrow input { font-size: 16px !important; padding: 8px 10px; }
  .rb-fg textarea { min-height: 70px; }
  .rb-r2 { grid-template-columns: 1fr 1fr; gap: 6px; }
  .rb-rmv { padding: 5px 10px; font-size: 11px; top: 7px; right: 7px; }
  .rb-addb { padding: 9px 18px; font-size: 12.5px; width: 100%; margin-top: 4px; }
  .rb-chip { font-size: 12px; padding: 4px 9px; }
  .rb-chipx { font-size: 15px; }
  .rb-ec { padding: 10px 11px 8px; }
  .rb-photo-box { flex-wrap: wrap; }
  .rb-photo-btn, .rb-photo-rm { padding: 7px 12px; font-size: 12px; }
  .rb-pages { max-width: 100%; }
  .rb-pvlbl { font-size: 9px; }
  .rb-empty { padding: 36px 18px; }
  .rb-empty h3 { font-size: 16px; }
  .rb-empty p { font-size: 12px; }
  .rb-pdfload-box { padding: 22px 22px; margin: 0 16px; }
}

@media (max-width: 400px) {
  .rb-r2 { grid-template-columns: 1fr; }
  .rb-mob-tab { font-size: 10px; padding: 9px 4px 8px; }
}

/* ═══════════════════════════════════════════════════════════
   RESUME DOCUMENT STYLES  ·  prefix: rdoc-  /  rdc-
   All font sizes are em-relative to allow font-scale control
   ═══════════════════════════════════════════════════════════ */
.rdoc { all: initial; display: block; background: #fff; line-height: 1.5; }
.rdoc * { box-sizing: border-box; }

/* ── CLASSIC ── */
.rdoc-classic { font-family: 'Lato', Georgia, sans-serif; padding: 36px 40px 32px; color: #222; font-size: 1em; }
.rdoc-classic .rdc-head { border-bottom: 3px solid var(--RC); padding-bottom: 16px; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 18px; }
.rdoc-classic .rdc-head-text { flex: 1; }
.rdoc-classic .rdc-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--RC); flex-shrink: 0; }
.rdoc-classic .rdc-photo-sq { border-radius: 8px; }
.rdoc-classic .rdc-name { font-size: 1.95em; font-weight: 700; color: var(--RC); letter-spacing: .3px; line-height: 1.2; margin-bottom: 3px; }
.rdoc-classic .rdc-title { font-size: .95em; color: #555; margin-bottom: 8px; font-weight: 300; }
.rdoc-classic .rdc-contact { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: .82em; color: #444; }
.rdoc-classic .rdc-section { margin-bottom: 15px; }
.rdoc-classic .rdc-sec-t { font-size: .72em; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: var(--RC); border-bottom: 2px solid var(--RC); padding-bottom: 3px; margin-bottom: 10px; }
.rdoc-classic .rdc-entry { margin-bottom: 10px; }
.rdoc-classic .rdc-eh { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 2px; }
.rdoc-classic .rdc-etitle { font-weight: 700; font-size: .9em; color: #111; }
.rdoc-classic .rdc-edate { font-size: .78em; color: #777; white-space: nowrap; background: var(--RCL); padding: 1px 6px; border-radius: 3px; flex-shrink: 0; }
.rdoc-classic .rdc-esub { font-size: .82em; color: var(--RC); font-weight: 600; margin-bottom: 3px; }
.rdoc-classic .rdc-edesc { font-size: .82em; color: #444; line-height: 1.6; }
.rdoc-classic .rdc-edesc ul { padding-left: 17px; margin: 3px 0; list-style: disc; }
.rdoc-classic .rdc-edesc li { margin-bottom: 2px; }
.rdoc-classic .rdc-edesc p { margin: 2px 0; }
.rdoc-classic .rdc-skills { display: flex; flex-wrap: wrap; gap: 5px; }
.rdoc-classic .rdc-skill { background: var(--RCL); color: var(--RC); border: 1px solid var(--RCB); border-radius: 4px; padding: 3px 10px; font-size: .82em; }
.rdoc-classic .rdc-sum { font-size: .88em; color: #333; line-height: 1.65; }

/* ── MODERN (sidebar) ── */
.rdoc-modern { font-family: 'DM Sans', system-ui, sans-serif; display: grid; grid-template-columns: 215px 1fr; font-size: 1em; }
.rdoc-modern .rdm-sb { background: var(--RC); color: #fff; padding: 30px 18px; }
.rdoc-modern .rdm-sb .rdm-photo-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.rdoc-modern .rdm-sb .rdm-photo { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.4); }
.rdoc-modern .rdm-sb .rdm-photo-sq { border-radius: 8px; }
.rdoc-modern .rdm-sb .rdm-name { font-size: 1.32em; font-weight: 700; line-height: 1.25; margin-bottom: 3px; word-break: break-word; }
.rdoc-modern .rdm-sb .rdm-jobt { font-size: .8em; opacity: .75; margin-bottom: 20px; line-height: 1.45; }
.rdoc-modern .rdm-sb .rdm-blk { margin-bottom: 18px; }
.rdoc-modern .rdm-sb .rdm-blbl { font-size: .65em; text-transform: uppercase; letter-spacing: 1.6px; opacity: .6; margin-bottom: 7px; font-weight: 700; }
.rdoc-modern .rdm-sb .rdm-bitem { font-size: .8em; margin-bottom: 5px; opacity: .9; line-height: 1.45; word-break: break-all; }
.rdoc-modern .rdm-sb .rdm-sktag { background: rgba(255,255,255,.16); border-radius: 3px; padding: 2px 8px; font-size: .75em; display: inline-block; margin: 2px 2px 0; }
.rdoc-modern .rdm-main { padding: 28px 24px; background: #fff; }
.rdoc-modern .rdm-main .rdc-section { margin-bottom: 16px; }
.rdoc-modern .rdm-main .rdc-sec-t { font-size: .68em; font-weight: 700; text-transform: uppercase; letter-spacing: 1.6px; color: var(--RC); border-bottom: 2px solid var(--RC); padding-bottom: 2px; margin-bottom: 10px; }
.rdoc-modern .rdm-main .rdc-entry { margin-bottom: 10px; }
.rdoc-modern .rdm-main .rdc-eh { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.rdoc-modern .rdm-main .rdc-etitle { font-weight: 700; font-size: .88em; color: #111; }
.rdoc-modern .rdm-main .rdc-edate { font-size: .76em; color: #888; }
.rdoc-modern .rdm-main .rdc-esub { font-size: .8em; color: var(--RC); font-weight: 600; margin-bottom: 3px; }
.rdoc-modern .rdm-main .rdc-edesc { font-size: .8em; color: #444; line-height: 1.6; }
.rdoc-modern .rdm-main .rdc-edesc ul { padding-left: 17px; margin: 3px 0; list-style: disc; }
.rdoc-modern .rdm-main .rdc-edesc li { margin-bottom: 2px; }
.rdoc-modern .rdm-main .rdc-edesc p { margin: 2px 0; }
.rdoc-modern .rdm-main .rdc-sum { font-size: .86em; color: #333; line-height: 1.65; }

/* ── EXECUTIVE ── */
.rdoc-executive { font-family: 'Crimson Pro', Georgia, serif; padding: 42px 48px 36px; color: #111; font-size: 1em; }
.rdoc-executive .rdc-head { display: flex; align-items: flex-start; justify-content: center; gap: 20px; text-align: center; border-bottom: 1px solid #bbb; padding-bottom: 20px; margin-bottom: 20px; flex-direction: column; align-items: center; }
.rdoc-executive .rdc-photo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 2px solid #aaa; }
.rdoc-executive .rdc-photo-sq { border-radius: 8px; }
.rdoc-executive .rdc-name { font-size: 2.1em; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 5px; color: #111; }
.rdoc-executive .rdc-title { font-size: .82em; letter-spacing: 3px; text-transform: uppercase; color: #666; margin-bottom: 10px; font-family: 'Lato', sans-serif; }
.rdoc-executive .rdc-contact { display: flex; flex-wrap: wrap; gap: 4px 14px; justify-content: center; font-size: .8em; color: #444; font-family: 'Lato', sans-serif; }
.rdoc-executive .rdc-section { margin-bottom: 16px; }
.rdoc-executive .rdc-sec-t { font-size: .7em; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; border-bottom: 1px solid #111; padding-bottom: 4px; margin-bottom: 10px; font-family: 'Lato', sans-serif; }
.rdoc-executive .rdc-entry { margin-bottom: 11px; }
.rdoc-executive .rdc-eh { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.rdoc-executive .rdc-etitle { font-weight: 700; font-size: 1em; }
.rdoc-executive .rdc-edate { font-size: .8em; color: #666; font-family: 'Lato', sans-serif; }
.rdoc-executive .rdc-esub { font-size: .84em; color: #555; font-style: italic; margin-bottom: 3px; }
.rdoc-executive .rdc-edesc { font-size: .84em; color: #333; font-family: 'Lato', sans-serif; line-height: 1.6; }
.rdoc-executive .rdc-edesc ul { padding-left: 18px; margin: 3px 0; list-style: disc; }
.rdoc-executive .rdc-edesc li { margin-bottom: 2px; }
.rdoc-executive .rdc-edesc p { margin: 2px 0; }
.rdoc-executive .rdc-skills { display: flex; flex-wrap: wrap; gap: 8px; font-family: 'Lato', sans-serif; }
.rdoc-executive .rdc-skill { font-size: .84em; color: #333; }
.rdoc-executive .rdc-skill::after { content: " ·"; color: #bbb; }
.rdoc-executive .rdc-skill:last-child::after { content: ""; }
.rdoc-executive .rdc-sum { font-size: .9em; color: #333; font-style: italic; line-height: 1.7; }

/* ── MINIMAL ── */
.rdoc-minimal { font-family: 'Raleway', sans-serif; padding: 36px 40px 30px; color: #1a1a2e; font-size: 1em; }
.rdoc-minimal .rdc-head { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 16px; }
.rdoc-minimal .rdc-head-text { flex: 1; }
.rdoc-minimal .rdc-photo { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--RC); flex-shrink: 0; }
.rdoc-minimal .rdc-photo-sq { border-radius: 8px; }
.rdoc-minimal .rdc-name { font-size: 1.95em; font-weight: 700; color: #1a1a2e; margin-bottom: 3px; letter-spacing: -.3px; }
.rdoc-minimal .rdc-title { font-size: .88em; color: var(--RC); font-weight: 600; margin-bottom: 10px; }
.rdoc-minimal .rdc-contact { display: flex; flex-wrap: wrap; gap: 4px 11px; font-size: .8em; color: #555; border-top: 2.5px solid var(--RC); padding-top: 8px; }
.rdoc-minimal .rdc-section { margin-bottom: 15px; }
.rdoc-minimal .rdc-sec-t { font-size: .65em; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--RC); margin-bottom: 8px; }
.rdoc-minimal .rdc-entry { margin-bottom: 9px; padding-left: 11px; border-left: 2.5px solid var(--RCL); }
.rdoc-minimal .rdc-eh { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.rdoc-minimal .rdc-etitle { font-weight: 700; font-size: .88em; color: #1a1a2e; }
.rdoc-minimal .rdc-edate { font-size: .75em; color: #999; }
.rdoc-minimal .rdc-esub { font-size: .8em; color: var(--RC); margin-bottom: 2px; }
.rdoc-minimal .rdc-edesc { font-size: .8em; color: #555; line-height: 1.6; }
.rdoc-minimal .rdc-edesc ul { padding-left: 17px; margin: 3px 0; list-style: disc; }
.rdoc-minimal .rdc-edesc li { margin-bottom: 2px; }
.rdoc-minimal .rdc-edesc p { margin: 2px 0; }
.rdoc-minimal .rdc-skills { display: flex; flex-wrap: wrap; gap: 5px; }
.rdoc-minimal .rdc-skill { border: 1.5px solid var(--RC); color: var(--RC); border-radius: 20px; padding: 2px 11px; font-size: .78em; font-weight: 600; }
.rdoc-minimal .rdc-sum { font-size: .86em; color: #444; line-height: 1.65; }

/* ── BOLD ── */
.rdoc-bold { font-family: 'DM Sans', system-ui, sans-serif; color: #111; font-size: 1em; }
.rdoc-bold .rdb-hd { background: var(--RC); color: #fff; padding: 28px 36px 22px; display: flex; align-items: center; gap: 18px; }
.rdoc-bold .rdb-hd .rdc-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.35); flex-shrink: 0; }
.rdoc-bold .rdb-hd .rdc-photo-sq { border-radius: 8px; }
.rdoc-bold .rdb-hd-text { flex: 1; }
.rdoc-bold .rdb-hd .rdc-name { font-size: 1.85em; font-weight: 700; letter-spacing: .3px; margin-bottom: 3px; color: #fff; }
.rdoc-bold .rdb-hd .rdc-title { font-size: .88em; opacity: .8; margin-bottom: 10px; color: #fff; }
.rdoc-bold .rdb-hd .rdc-contact { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: .8em; opacity: .9; color: #fff; }
.rdoc-bold .rdb-body { padding: 24px 36px; }
.rdoc-bold .rdc-section { margin-bottom: 14px; }
.rdoc-bold .rdc-sec-t { font-size: .7em; font-weight: 700; text-transform: uppercase; letter-spacing: 1.6px; color: #fff; background: var(--RC); padding: 3px 10px; margin-bottom: 9px; display: inline-block; border-radius: 3px; }
.rdoc-bold .rdc-entry { margin-bottom: 9px; }
.rdoc-bold .rdc-eh { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.rdoc-bold .rdc-etitle { font-weight: 700; font-size: .9em; }
.rdoc-bold .rdc-edate { font-size: .78em; color: #888; }
.rdoc-bold .rdc-esub { font-size: .8em; color: var(--RC); font-weight: 600; margin-bottom: 3px; }
.rdoc-bold .rdc-edesc { font-size: .8em; color: #444; line-height: 1.6; }
.rdoc-bold .rdc-edesc ul { padding-left: 17px; margin: 3px 0; list-style: disc; }
.rdoc-bold .rdc-edesc li { margin-bottom: 2px; }
.rdoc-bold .rdc-edesc p { margin: 2px 0; }
.rdoc-bold .rdc-skills { display: flex; flex-wrap: wrap; gap: 5px; }
.rdoc-bold .rdc-skill { background: var(--RC); color: #fff; border-radius: 4px; padding: 3px 10px; font-size: .8em; font-weight: 600; }
.rdoc-bold .rdc-sum { font-size: .86em; color: #333; line-height: 1.65; }