@font-face {
    font-family: "RC Alegreya Sans";
    src: url("../fonts/alegreya-sans-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "RC Alegreya Sans";
    src: url("../fonts/alegreya-sans-500.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "RC Alegreya Sans";
    src: url("../fonts/alegreya-sans-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "RC Alegreya Sans";
    src: url("../fonts/alegreya-sans-800.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "RC DM Sans";
    src: url("../fonts/dm-sans-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "RC DM Sans";
    src: url("../fonts/dm-sans-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "RC Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "RC Lato";
    src: url("../fonts/lato-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "RC Lato";
    src: url("../fonts/lato-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "RC Lato";
    src: url("../fonts/lato-900.woff2") format("woff2");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

.rcb-app,
.rcb-app * {
    box-sizing: border-box;
}

.rcb-app {
    --rcb-ink: #101828;
    --rcb-black: #0b0f14;
    --rcb-slate: #344054;
    --rcb-muted: #667085;
    --rcb-border: #e4e7ec;
    --rcb-soft: #f2f4f7;
    --rcb-white: #ffffff;
    --rcb-lime: #c8ff32;
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
    color: var(--rcb-ink);
    background: var(--rcb-white);
    border: 1px solid var(--rcb-border);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(16, 24, 40, .10);
    font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.rcb-app button,
.rcb-app input {
    font: inherit;
}

.rcb-app button {
    cursor: pointer;
}

.rcb-toolbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 15px 22px;
    color: var(--rcb-white);
    background: var(--rcb-black);
}

.rcb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
}

.rcb-brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    color: var(--rcb-black);
    background: var(--rcb-lime);
    border-radius: 14px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .1), 0 9px 25px rgba(200, 255, 50, .15);
    font-size: 21px;
    font-weight: 950;
    transition: transform .25s ease, border-radius .25s ease, box-shadow .25s ease;
}

.rcb-brand:hover .rcb-brand-mark {
    transform: translateY(-2px) rotate(-4deg);
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .16), 0 12px 30px rgba(200, 255, 50, .25);
}

.rcb-brand strong,
.rcb-brand span {
    display: block;
}

.rcb-brand strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: -.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.rcb-brand div > span {
    margin-top: 4px;
    color: #aeb7c5;
    font-size: 11px;
}

.rcb-toolbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.rcb-save-status {
    margin-right: 8px;
    color: #b8c0cc;
    font-size: 11px;
}

.rcb-save-status::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    background: var(--rcb-lime);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200, 255, 50, .55);
}

.rcb-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid #3a414c;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.rcb-btn:hover {
    transform: translateY(-2px);
}

.rcb-btn-ghost {
    color: #fff;
    background: #151b23;
}

.rcb-btn-ghost:hover {
    background: #222a35;
    border-color: #596272;
    box-shadow: 0 9px 22px rgba(0, 0, 0, .22);
}

.rcb-btn-dark {
    color: var(--rcb-black);
    background: var(--rcb-lime);
    border-color: var(--rcb-lime);
    box-shadow: 0 8px 22px rgba(200, 255, 50, .13);
}

.rcb-btn-dark:hover {
    background: #d4ff5c;
    box-shadow: 0 11px 28px rgba(200, 255, 50, .23);
}

.rcb-btn:disabled {
    cursor: wait;
    opacity: .7;
    transform: none;
}

.rcb-btn:focus-visible,
.rcb-template-trigger:focus-visible,
.rcb-template-option:focus-visible,
.rcb-segment:focus-within,
.rcb-inline-add:focus-visible,
.rcb-inline-remove:focus-visible,
.rcb-resume-photo-wrap:focus-visible {
    outline: 3px solid rgba(130, 93, 255, .30);
    outline-offset: 3px;
}

.rcb-design-bar {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 90px;
    padding: 14px 22px;
    background: #fff;
    border-bottom: 1px solid var(--rcb-border);
}

.rcb-guide {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 270px;
}

.rcb-guide-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    color: #fff;
    background: #111827;
    border-radius: 12px;
    font-size: 17px;
    box-shadow: 0 8px 18px rgba(17, 24, 39, .13);
}

.rcb-guide strong,
.rcb-guide small {
    display: block;
}

.rcb-guide strong {
    font-size: 13px;
    letter-spacing: -.01em;
}

.rcb-guide small {
    max-width: 410px;
    margin-top: 3px;
    color: var(--rcb-muted);
    font-size: 10px;
    line-height: 1.4;
}

.rcb-design-controls {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
}

.rcb-template-control {
    position: relative;
    min-width: 235px;
}

.rcb-control-label {
    display: block;
    margin: 0 0 6px;
    color: #475467;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.rcb-template-trigger {
    width: 100%;
    min-height: 50px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 7px 11px;
    color: var(--rcb-ink);
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    text-align: left;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.rcb-template-trigger:hover,
.rcb-template-trigger[aria-expanded="true"] {
    transform: translateY(-1px);
    border-color: #98a2b3;
    box-shadow: 0 9px 22px rgba(16, 24, 40, .09);
}

.rcb-template-trigger strong,
.rcb-template-trigger small {
    display: block;
}

.rcb-template-trigger strong {
    font-size: 12px;
}

.rcb-template-trigger small {
    margin-top: 2px;
    color: #98a2b3;
    font-size: 9px;
}

.rcb-template-swatch {
    width: 30px;
    height: 36px;
    display: block;
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.rcb-swatch-executive { background: linear-gradient(180deg, #102a43 0 35%, #eff4f8 35% 100%); border-left: 9px solid #c6a15b; }
.rcb-swatch-modern { background: linear-gradient(90deg, #16212c 0 32%, #fff 32%); border-top: 6px solid #17a89b; }
.rcb-swatch-ats { background: linear-gradient(180deg, #fff 0 25%, #2563eb 25% 30%, #fff 30%); }
.rcb-swatch-creative { background: linear-gradient(135deg, #4338ca 0 44%, #fb7185 44% 52%, #fff 52%); }
.rcb-swatch-classic { background: linear-gradient(180deg, #7a294c 0 8%, #fffaf5 8% 100%); }
.rcb-swatch-minimal { background: linear-gradient(90deg, #eff5f2 0 36%, #fff 36%); border-bottom: 6px solid #16856c; }

.rcb-chevron {
    font-size: 18px;
    transition: transform .2s ease;
}

.rcb-template-trigger[aria-expanded="true"] .rcb-chevron {
    transform: rotate(180deg);
}

.rcb-template-menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    z-index: 80;
    width: min(640px, calc(100vw - 36px));
}

.rcb-template-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 11px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 17px;
    box-shadow: 0 25px 65px rgba(16, 24, 40, .20);
}

.rcb-template-option {
    min-width: 0;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 9px;
    color: var(--rcb-ink);
    background: #fff;
    border: 1px solid var(--rcb-border);
    border-radius: 13px;
    text-align: left;
    transition: transform .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.rcb-template-option:hover {
    transform: translateY(-3px);
    border-color: #98a2b3;
    box-shadow: 0 10px 22px rgba(16, 24, 40, .10);
}

.rcb-template-option.is-selected {
    color: #fff;
    background: #101828;
    border-color: #101828;
}

.rcb-template-copy strong,
.rcb-template-copy small {
    display: block;
}

.rcb-template-copy strong {
    font-size: 11px;
}

.rcb-template-copy small {
    margin-top: 4px;
    color: #667085;
    font-size: 8px;
    line-height: 1.4;
}

.rcb-template-option.is-selected .rcb-template-copy small {
    color: #c8ced8;
}

.rcb-template-thumb {
    width: 62px;
    height: 78px;
    display: block;
    position: relative;
    overflow: hidden;
    padding: 8px 6px 5px;
    color: #172033;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 3px 11px rgba(0, 0, 0, .15);
}

.rcb-template-thumb > b,
.rcb-template-thumb > em {
    display: block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-style: normal;
}

.rcb-template-thumb > b { font-size: 4px; }
.rcb-template-thumb > em { margin-top: 2px; font-size: 3px; opacity: .65; }
.rcb-template-thumb > span { display: block; margin-top: 9px; }
.rcb-template-thumb > span i { display: block; width: 100%; height: 2px; margin-top: 4px; background: #d5dae2; }
.rcb-template-thumb > span i:nth-child(2n) { width: 72%; }
.rcb-template-thumb > span i:nth-child(3n) { width: 88%; }
.rcb-thumb-photo { width: 13px; height: 13px; float: left; margin: -1px 4px 2px 0; background: currentColor; border-radius: 50%; }
.rcb-thumb-executive { padding-top: 12px; color: #fff; background: linear-gradient(180deg, #102a43 0 38%, #fff 38%); }
.rcb-thumb-executive > span { margin-top: 16px; }
.rcb-thumb-executive > span i { background: #cbd5df; }
.rcb-thumb-modern { padding-left: 23px; border-left: 18px solid #16212c; border-top: 6px solid #17a89b; }
.rcb-thumb-modern .rcb-thumb-photo { display: none; }
.rcb-thumb-ats { border-top: 5px solid #2563eb; }
.rcb-thumb-ats .rcb-thumb-photo { border-radius: 2px; }
.rcb-thumb-creative { padding-top: 14px; color: #fff; background: linear-gradient(145deg, #4338ca 0 40%, #fb7185 40% 46%, #fff 46%); }
.rcb-thumb-creative > span { margin-top: 20px; }
.rcb-thumb-classic { color: #7a294c; background: #fffaf5; border-top: 5px solid #7a294c; font-family: Georgia, serif; text-align: center; }
.rcb-thumb-classic .rcb-thumb-photo { display: none; }
.rcb-thumb-minimal { padding-left: 20px; background: linear-gradient(90deg, #eff5f2 0 29%, #fff 29%); border-bottom: 5px solid #16856c; }
.rcb-thumb-minimal .rcb-thumb-photo { border-radius: 2px; }

.rcb-photo-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 220px;
    margin: 0;
    padding: 0;
    border: 0;
}

.rcb-photo-choice .rcb-control-label {
    grid-column: 1 / -1;
}

.rcb-segment {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 50px;
    padding: 10px 13px;
    color: #475467;
    background: #fff;
    border: 1px solid #d0d5dd;
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.rcb-segment:first-of-type {
    border-radius: 12px 0 0 12px;
}

.rcb-segment:last-of-type {
    margin-left: -1px;
    border-radius: 0 12px 12px 0;
}

.rcb-segment:hover {
    color: #101828;
    background: #f8fafc;
}

.rcb-segment.is-selected {
    z-index: 1;
    color: #fff;
    background: #101828;
    border-color: #101828;
    box-shadow: 0 7px 16px rgba(16, 24, 40, .13);
}

.rcb-segment input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rcb-workspace {
    min-height: 760px;
    padding: 20px 24px 36px;
    background:
        radial-gradient(circle at 14% 8%, rgba(200, 255, 50, .13), transparent 24%),
        radial-gradient(circle at 88% 22%, rgba(99, 102, 241, .11), transparent 27%),
        #edf0f4;
}

.rcb-canvas-meta {
    max-width: 930px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 auto 13px;
    color: #475467;
    font-size: 10px;
    font-weight: 750;
}

.rcb-canvas-meta > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.rcb-canvas-meta i {
    width: 7px;
    height: 7px;
    display: block;
    background: #12b76a;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(18, 183, 106, .12);
}

.rcb-preview-stage {
    position: relative;
    max-width: 930px;
    min-height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 17px;
}

.rcb-resume {
    --resume-accent: #c6a15b;
    --resume-accent-soft: #eff4f8;
    --resume-dark: #102a43;
    --resume-ink: #172b3a;
    width: 794px;
    min-height: 1123px;
    position: relative;
    transform-origin: top left;
    overflow: hidden;
    color: var(--resume-ink);
    background: #fff;
    box-shadow: 0 25px 65px rgba(16, 24, 40, .20);
    font-family: Aptos, Inter, "Segoe UI", Arial, sans-serif;
}

.rcb-resume-shell {
    min-height: 1123px;
    background: #fff;
}

.rcb-resume-header {
    min-height: 185px;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) 218px;
    align-items: center;
    gap: 24px;
    padding: 38px 42px;
    color: #fff;
    background: linear-gradient(135deg, #0c2134 0%, var(--resume-dark) 62%, #1c4564 100%);
}

.rcb-resume-photo-wrap {
    width: 96px;
    height: 112px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border: 3px solid rgba(255, 255, 255, .92);
    border-radius: 17px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.rcb-resume-photo-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .26);
}

.rcb-resume-photo-wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.rcb-photo-hover {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 7px 3px;
    color: #fff;
    background: rgba(7, 14, 24, .82);
    font-size: 7px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .2s ease, transform .2s ease;
}

.rcb-resume-photo-wrap:hover .rcb-photo-hover,
.rcb-resume-photo-wrap:focus .rcb-photo-hover {
    opacity: 1;
    transform: translateY(0);
}

.rcb-resume.no-photo .rcb-resume-photo-wrap {
    display: none;
}

.rcb-resume.no-photo .rcb-resume-header {
    grid-template-columns: minmax(0, 1fr) 235px;
}

.rcb-resume-identity {
    min-width: 0;
}

.rcb-resume-identity h1 {
    margin: 0;
    color: inherit;
    font-size: 37px;
    line-height: 1.02;
    letter-spacing: -.045em;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .20);
}

.rcb-resume-identity p {
    margin: 10px 0 0;
    color: var(--resume-accent);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .11em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .16);
}

.rcb-resume-contact {
    display: grid;
    align-content: center;
    gap: 8px;
    min-width: 0;
    font-size: 9px;
    line-height: 1.35;
}

.rcb-contact-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.rcb-contact-item > i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--resume-dark);
    background: var(--resume-accent);
    border-radius: 50%;
    font-size: 7px;
    font-style: normal;
    font-weight: 950;
}

.rcb-resume-body {
    min-height: 938px;
    display: grid;
    grid-template-columns: 31% 69%;
    align-items: stretch;
}

.rcb-resume-sidebar {
    min-width: 0;
    padding: 34px 27px 40px;
    background: var(--resume-accent-soft);
}

.rcb-resume-main {
    min-width: 0;
    padding: 34px 38px 40px;
    background: #fff;
}

.rcb-resume-section {
    position: relative;
    margin: 0 0 27px;
}

.rcb-resume-section:last-child {
    margin-bottom: 0;
}

.rcb-section-heading {
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.rcb-resume-section h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--resume-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .115em;
    text-transform: uppercase;
}

.rcb-resume-section h2::before {
    content: "";
    width: 6px;
    height: 15px;
    display: block;
    background: var(--resume-accent);
    border-radius: 999px;
}

.rcb-resume-section p {
    margin: 0;
    font-size: 10px;
    line-height: 1.58;
}

.rcb-editable {
    min-width: 8px;
    position: relative;
    overflow-wrap: anywhere;
    border-radius: 4px;
    outline: 1px dashed transparent;
    outline-offset: 3px;
    cursor: text;
    transition: color .18s ease, background-color .18s ease, outline-color .18s ease, box-shadow .18s ease;
}

.rcb-editable:hover {
    background: rgba(255, 255, 255, .24);
    outline-color: currentColor;
}

.rcb-resume-body .rcb-editable:hover {
    background: rgba(99, 102, 241, .07);
}

.rcb-editable:focus {
    z-index: 4;
    background: #fffbe9 !important;
    color: #101828 !important;
    outline: 2px solid #f7c948 !important;
    box-shadow: 0 5px 16px rgba(16, 24, 40, .12);
}

.rcb-editable:empty::before {
    content: attr(data-placeholder);
    color: currentColor;
    opacity: .48;
}

.rcb-multiline {
    white-space: pre-line;
}

.rcb-inline-add,
.rcb-inline-remove {
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--resume-dark);
    background: #fff;
    border: 1px solid rgba(15, 37, 55, .25);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.rcb-inline-add {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    font-size: 14px;
    opacity: .46;
}

.rcb-resume-section:hover .rcb-inline-add,
.rcb-inline-add:focus {
    opacity: 1;
}

.rcb-inline-add:hover {
    color: #fff;
    background: var(--resume-dark);
    border-color: var(--resume-dark);
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 6px 14px rgba(16, 24, 40, .18);
}

.rcb-inline-remove {
    width: 20px;
    height: 20px;
    position: absolute;
    top: -7px;
    right: -7px;
    z-index: 6;
    color: #b42318;
    border-color: #f1b4af;
    font-size: 13px;
    opacity: 0;
    transform: scale(.78);
}

.rcb-resume-entry:hover > .rcb-inline-remove,
.rcb-token:hover > .rcb-inline-remove,
.rcb-language-item:hover > .rcb-inline-remove,
.rcb-inline-remove:focus {
    opacity: 1;
    transform: scale(1);
}

.rcb-inline-remove:hover {
    color: #fff;
    background: #b42318;
    border-color: #b42318;
    box-shadow: 0 5px 12px rgba(180, 35, 24, .20);
}

.rcb-resume-entry {
    position: relative;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 18px;
    padding: 3px 2px;
    border-radius: 7px;
    transition: background-color .2s ease, box-shadow .2s ease;
}

.rcb-resume-entry:hover {
    background: rgba(99, 102, 241, .035);
    box-shadow: 0 0 0 7px rgba(99, 102, 241, .035);
}

.rcb-resume-entry:last-child {
    margin-bottom: 0;
}

.rcb-resume-entry-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 6px;
}

.rcb-entry-title-wrap {
    min-width: 0;
}

.rcb-resume-entry h3 {
    display: inline-block;
    margin: 0;
    color: var(--resume-dark);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.25;
}

.rcb-entry-subtitle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
    color: #526273;
    font-size: 9px;
    font-weight: 700;
}

.rcb-entry-separator {
    opacity: .58;
}

.rcb-entry-date {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex: 0 0 auto;
    padding-top: 1px;
    color: #526273;
    font-size: 8px;
    font-weight: 800;
    white-space: nowrap;
}

.rcb-entry-description {
    color: #34495a;
}

.rcb-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.rcb-token {
    display: inline-flex;
    position: relative;
}

.rcb-tag {
    display: inline-block;
    padding: 6px 8px;
    color: var(--resume-dark);
    background: rgba(255, 255, 255, .74);
    border-radius: 7px;
    font-size: 8px;
    font-weight: 750;
    line-height: 1;
    box-shadow: 0 1px 0 rgba(16, 24, 40, .08);
}

.rcb-token .rcb-inline-remove {
    top: -8px;
    right: -8px;
    width: 17px;
    height: 17px;
    font-size: 11px;
}

.rcb-language-list {
    display: grid;
    gap: 7px;
}

.rcb-language-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 7px 9px;
    color: #34495a;
    background: rgba(255, 255, 255, .63);
    border-radius: 7px;
    font-size: 8px;
    font-weight: 700;
}

.rcb-language-item .rcb-inline-remove {
    top: -7px;
    right: -7px;
    width: 17px;
    height: 17px;
    font-size: 11px;
}

/* Template 2 — Modern */
.rcb-resume.template-modern {
    --resume-accent: #18b8a9;
    --resume-accent-soft: #16212c;
    --resume-dark: #16212c;
    --resume-ink: #1d2939;
}

.rcb-resume.template-modern .rcb-resume-header {
    min-height: 178px;
    grid-template-columns: minmax(0, 1fr) 218px;
    padding-left: 260px;
    color: #16212c;
    background: #fff;
}

.rcb-resume.template-modern .rcb-resume-photo-wrap {
    position: absolute;
    left: 66px;
    top: 35px;
    color: #fff;
    background: #263642;
    border-color: #18b8a9;
}

.rcb-resume.template-modern.no-photo .rcb-resume-header {
    grid-template-columns: minmax(0, 1fr) 235px;
    padding-left: 44px;
}

.rcb-resume.template-modern .rcb-resume-identity p {
    color: #0f8f84;
    text-shadow: none;
}

.rcb-resume.template-modern .rcb-resume-identity h1 {
    text-shadow: 0 3px 16px rgba(16, 24, 40, .10);
}

.rcb-resume.template-modern .rcb-contact-item > i {
    color: #fff;
}

.rcb-resume.template-modern .rcb-resume-body {
    min-height: 945px;
    grid-template-columns: 30% 70%;
}

.rcb-resume.template-modern .rcb-resume-sidebar {
    color: #e9f0f4;
    background: #16212c;
}

.rcb-resume.template-modern .rcb-resume-sidebar h2,
.rcb-resume.template-modern .rcb-resume-sidebar .rcb-editable,
.rcb-resume.template-modern .rcb-resume-sidebar .rcb-tag,
.rcb-resume.template-modern .rcb-resume-sidebar .rcb-language-item {
    color: #edf7f6;
}

.rcb-resume.template-modern .rcb-resume-sidebar .rcb-tag,
.rcb-resume.template-modern .rcb-resume-sidebar .rcb-language-item {
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
}

/* Template 3 — ATS Clean */
.rcb-resume.template-ats {
    --resume-accent: #2563eb;
    --resume-accent-soft: #f1f5fb;
    --resume-dark: #123b78;
    --resume-ink: #1f2937;
    font-family: Arial, Helvetica, sans-serif;
}

.rcb-resume.template-ats .rcb-resume-header {
    min-height: 168px;
    grid-template-columns: 78px minmax(0, 1fr);
    align-content: center;
    padding: 31px 48px;
    color: #123b78;
    background: #fff;
    box-shadow: inset 10px 0 0 #2563eb;
}

.rcb-resume.template-ats .rcb-resume-photo-wrap {
    width: 68px;
    height: 80px;
    color: #fff;
    background: #123b78;
    border: 0;
    border-radius: 7px;
    box-shadow: none;
}

.rcb-resume.template-ats.no-photo .rcb-resume-header {
    grid-template-columns: 1fr;
}

.rcb-resume.template-ats .rcb-resume-identity h1 {
    font-size: 34px;
    text-shadow: none;
}

.rcb-resume.template-ats .rcb-resume-identity p {
    color: #2563eb;
    text-shadow: none;
}

.rcb-resume.template-ats .rcb-resume-contact {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 13px;
}

.rcb-resume.template-ats.no-photo .rcb-resume-contact {
    grid-column: 1;
}

.rcb-resume.template-ats .rcb-contact-item {
    display: flex;
    gap: 5px;
}

.rcb-resume.template-ats .rcb-contact-item > i {
    width: auto;
    height: auto;
    color: #2563eb;
    background: none;
}

.rcb-resume.template-ats .rcb-resume-body {
    min-height: 955px;
    display: block;
}

.rcb-resume.template-ats .rcb-resume-sidebar {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 26px;
    padding: 25px 48px 17px;
    background: #f1f5fb;
}

.rcb-resume.template-ats .rcb-resume-main {
    padding: 23px 48px 40px;
}

.rcb-resume.template-ats .rcb-resume-section {
    margin-bottom: 20px;
}

.rcb-resume.template-ats .rcb-resume-sidebar .rcb-resume-section {
    margin-bottom: 0;
}

.rcb-resume.template-ats .rcb-resume-section h2::before {
    width: 14px;
    height: 5px;
    border-radius: 1px;
}

.rcb-resume.template-ats .rcb-tag,
.rcb-resume.template-ats .rcb-language-item {
    padding: 4px 6px;
    background: #fff;
    border-radius: 3px;
}

/* Template 4 — Creative */
.rcb-resume.template-creative {
    --resume-accent: #fb7185;
    --resume-accent-soft: #f2f1ff;
    --resume-dark: #4338ca;
    --resume-ink: #25234c;
}

.rcb-resume.template-creative .rcb-resume-header {
    min-height: 210px;
    grid-template-columns: 106px minmax(0, 1fr);
    align-content: center;
    padding: 38px 55px;
    background: linear-gradient(135deg, #312e81 0%, #4338ca 70%, #6255dd 100%);
    clip-path: polygon(0 0, 100% 0, 100% 86%, 83% 100%, 0 100%);
}

.rcb-resume.template-creative .rcb-resume-photo-wrap {
    width: 94px;
    height: 112px;
    border-color: #fb7185;
    border-radius: 50px 50px 13px 13px;
}

.rcb-resume.template-creative .rcb-resume-contact {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 7px 15px;
    margin-top: 13px;
}

.rcb-resume.template-creative .rcb-contact-item {
    display: flex;
    gap: 6px;
}

.rcb-resume.template-creative .rcb-contact-item > i {
    width: 17px;
    height: 17px;
}

.rcb-resume.template-creative.no-photo .rcb-resume-header {
    grid-template-columns: 1fr;
}

.rcb-resume.template-creative.no-photo .rcb-resume-contact {
    grid-column: 1;
}

.rcb-resume.template-creative .rcb-resume-body {
    min-height: 913px;
    grid-template-columns: 36% 64%;
}

.rcb-resume.template-creative .rcb-resume-sidebar {
    padding-top: 42px;
}

.rcb-resume.template-creative .rcb-resume-main {
    padding-top: 42px;
}

.rcb-resume.template-creative .rcb-resume-section h2::before {
    width: 14px;
    height: 14px;
    border-radius: 4px 4px 9px 4px;
}

/* Template 5 — Classic */
.rcb-resume.template-classic {
    --resume-accent: #b88967;
    --resume-accent-soft: #fff7f1;
    --resume-dark: #742747;
    --resume-ink: #3e2932;
    background: #fffaf5;
    font-family: Georgia, "Times New Roman", serif;
}

.rcb-resume.template-classic .rcb-resume-shell {
    background: #fffaf5;
}

.rcb-resume.template-classic .rcb-resume-header {
    min-height: 205px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    padding: 30px 50px;
    color: #742747;
    background: #fffaf5;
    box-shadow: inset 0 10px 0 #742747;
    text-align: center;
}

.rcb-resume.template-classic .rcb-resume-photo-wrap {
    width: 72px;
    height: 72px;
    color: #fff;
    background: #742747;
    border: 3px solid #e5c8b6;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(116, 39, 71, .15);
}

.rcb-resume.template-classic .rcb-resume-identity h1 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: .025em;
    text-shadow: 0 3px 14px rgba(116, 39, 71, .09);
}

.rcb-resume.template-classic .rcb-resume-identity p {
    color: #966545;
    font-family: Aptos, Inter, Arial, sans-serif;
    text-shadow: none;
}

.rcb-resume.template-classic .rcb-resume-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 17px;
    font-family: Aptos, Inter, Arial, sans-serif;
}

.rcb-resume.template-classic .rcb-contact-item {
    display: flex;
    gap: 5px;
}

.rcb-resume.template-classic .rcb-contact-item > i {
    width: 18px;
    height: 18px;
    color: #fff;
    background: #742747;
}

.rcb-resume.template-classic .rcb-resume-body {
    min-height: 918px;
    display: block;
    padding: 30px 54px 42px;
    background: #fffaf5;
}

.rcb-resume.template-classic .rcb-resume-sidebar {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 27px;
    padding: 0 0 27px;
    background: transparent;
}

.rcb-resume.template-classic .rcb-resume-main {
    padding: 0;
    background: transparent;
}

.rcb-resume.template-classic .rcb-resume-sidebar .rcb-resume-section {
    margin-bottom: 0;
}

.rcb-resume.template-classic .rcb-resume-section h2 {
    font-family: Aptos, Inter, Arial, sans-serif;
}

.rcb-resume.template-classic .rcb-resume-section h2::before {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-radius: 1px;
}

.rcb-resume.template-classic .rcb-tag,
.rcb-resume.template-classic .rcb-language-item {
    background: #fff;
    border-radius: 3px;
}

.rcb-resume.template-classic .rcb-resume-entry h3 {
    font-weight: 700;
}

/* Template 6 — Minimal */
.rcb-resume.template-minimal {
    --resume-accent: #16856c;
    --resume-accent-soft: #edf5f2;
    --resume-dark: #24483f;
    --resume-ink: #263f38;
    padding: 24px;
    background: #e7efec;
}

.rcb-resume.template-minimal .rcb-resume-shell {
    min-height: 1075px;
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 12px 32px rgba(36, 72, 63, .11);
}

.rcb-resume.template-minimal .rcb-resume-header {
    min-height: 180px;
    grid-template-columns: 84px minmax(0, 1fr);
    padding: 33px 38px;
    color: #24483f;
    background: #fff;
}

.rcb-resume.template-minimal .rcb-resume-photo-wrap {
    width: 76px;
    height: 90px;
    color: #fff;
    background: #24483f;
    border: 0;
    border-radius: 10px;
    box-shadow: 8px 8px 0 #b7d9ce;
}

.rcb-resume.template-minimal.no-photo .rcb-resume-header {
    grid-template-columns: 1fr;
}

.rcb-resume.template-minimal .rcb-resume-identity h1 {
    text-shadow: none;
}

.rcb-resume.template-minimal .rcb-resume-identity p {
    color: #16856c;
    text-shadow: none;
}

.rcb-resume.template-minimal .rcb-resume-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin-top: 11px;
}

.rcb-resume.template-minimal .rcb-contact-item {
    display: flex;
    gap: 5px;
}

.rcb-resume.template-minimal .rcb-contact-item > i {
    width: 18px;
    height: 18px;
    color: #fff;
}

.rcb-resume.template-minimal .rcb-resume-body {
    min-height: 895px;
    grid-template-columns: 34% 66%;
}

.rcb-resume.template-minimal .rcb-resume-sidebar {
    background: #edf5f2;
}

.rcb-resume.template-minimal .rcb-resume-section h2::before {
    width: 14px;
    height: 5px;
    border-radius: 5px;
}

.rcb-resume.template-minimal .rcb-tag,
.rcb-resume.template-minimal .rcb-language-item {
    background: #fff;
    border-radius: 5px;
}

/* Version 3.1 - audited editorial template system */
.rcb-resume.template-executive,
.rcb-resume.template-modern,
.rcb-resume.template-ats,
.rcb-resume.template-creative,
.rcb-resume.template-classic,
.rcb-resume.template-minimal {
    padding: 0;
    color: #323b4c;
    background: #fff;
}

.rcb-resume.template-executive .rcb-resume-shell,
.rcb-resume.template-modern .rcb-resume-shell,
.rcb-resume.template-ats .rcb-resume-shell,
.rcb-resume.template-creative .rcb-resume-shell,
.rcb-resume.template-classic .rcb-resume-shell,
.rcb-resume.template-minimal .rcb-resume-shell {
    min-height: 1123px;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.rcb-resume.template-executive .rcb-resume-section,
.rcb-resume.template-modern .rcb-resume-section,
.rcb-resume.template-classic .rcb-resume-section,
.rcb-resume.template-minimal .rcb-resume-section {
    min-width: 0;
    margin: 0;
}

.rcb-resume.template-executive .rcb-resume-sidebar,
.rcb-resume.template-executive .rcb-resume-main,
.rcb-resume.template-modern .rcb-resume-sidebar,
.rcb-resume.template-modern .rcb-resume-main,
.rcb-resume.template-classic .rcb-resume-sidebar,
.rcb-resume.template-classic .rcb-resume-main,
.rcb-resume.template-minimal .rcb-resume-sidebar,
.rcb-resume.template-minimal .rcb-resume-main {
    min-height: 0;
    display: contents;
    padding: 0;
    color: inherit;
    background: transparent;
}

.rcb-resume.template-executive .rcb-section-heading,
.rcb-resume.template-classic .rcb-section-heading,
.rcb-resume.template-minimal .rcb-section-heading {
    min-height: 0;
    margin-bottom: 13px;
    padding-bottom: 7px;
    border-bottom: 2px solid currentColor;
}

.rcb-resume.template-executive .rcb-resume-section h2::before,
.rcb-resume.template-modern .rcb-resume-section h2::before,
.rcb-resume.template-classic .rcb-resume-section h2::before,
.rcb-resume.template-minimal .rcb-resume-section h2::before {
    display: none;
}

/* 1. Slate Professional - measured from the dark-blue reference */
.rcb-resume.template-executive {
    --resume-dark: #323b4c;
    --resume-accent: #4e607b;
    --resume-accent-soft: #4e607b;
    font-family: "RC Alegreya Sans", Arial, sans-serif;
}

.rcb-resume.template-executive .rcb-resume-header {
    min-height: 238px;
    display: block;
    position: relative;
    padding: 0;
    color: #fff;
    background: #323b4c;
}

.rcb-resume.template-executive .rcb-resume-photo-wrap {
    width: 218px;
    height: 218px;
    position: absolute;
    left: 55px;
    top: 12px;
    color: #fff;
    background: #4e607b;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: none;
}

.rcb-resume.template-executive .rcb-resume-identity {
    position: absolute;
    left: 372px;
    right: 35px;
    top: 72px;
}

.rcb-resume.template-executive .rcb-resume-identity h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: .98;
    letter-spacing: .005em;
    text-transform: uppercase;
    text-shadow: none;
}

.rcb-resume.template-executive .rcb-resume-identity p {
    margin-top: 22px;
    color: #fff;
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .015em;
    text-transform: uppercase;
    text-shadow: none;
}

.rcb-resume.template-executive .rcb-resume-contact {
    width: 248px;
    display: grid;
    position: absolute;
    left: 59px;
    top: 282px;
    z-index: 5;
    gap: 8px;
    color: #fff;
    font-size: 13px;
}

.rcb-resume.template-executive .rcb-resume-contact::before {
    content: "Contact";
    display: block;
    margin-bottom: 6px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.rcb-resume.template-executive .rcb-contact-item {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 9px;
}

.rcb-resume.template-executive .rcb-contact-item > i {
    width: 24px;
    height: 24px;
    color: #4e607b;
    background: #fff;
}

.rcb-resume.template-executive .rcb-resume-body {
    min-height: 885px;
    display: grid;
    grid-template-columns: 39.3% 60.7%;
    grid-template-rows: 150px 255px 175px 305px;
    padding: 0;
    background: linear-gradient(90deg, #4e607b 0 39.3%, #fff 39.3% 100%);
}

.rcb-resume.template-executive .rcb-summary-section {
    grid-column: 2;
    grid-row: 1;
    padding: 31px 48px 0 38px;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(1) {
    grid-column: 2;
    grid-row: 2 / span 2;
    padding: 24px 48px 0 38px;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    padding: 26px 32px 0 66px;
    color: #fff;
}

.rcb-resume.template-executive .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    padding: 23px 32px 0 66px;
    color: #fff;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(3) {
    grid-column: 1;
    grid-row: 4;
    padding: 25px 32px 30px 66px;
    color: #fff;
}

.rcb-resume.template-executive .rcb-resume-sidebar > .rcb-resume-section:nth-child(2) {
    grid-column: 2;
    grid-row: 4;
    padding: 25px 48px 30px 38px;
}

.rcb-resume.template-executive .rcb-resume-section h2 {
    color: inherit;
    font-family: "RC Alegreya Sans", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.rcb-resume.template-executive .rcb-resume-section p {
    color: inherit;
    font-size: 13px;
    line-height: 1.38;
}

.rcb-resume.template-executive .rcb-resume-entry {
    margin-bottom: 13px;
}

.rcb-resume.template-executive .rcb-resume-entry h3 {
    color: inherit;
    font-size: 14px;
}

.rcb-resume.template-executive .rcb-entry-subtitle,
.rcb-resume.template-executive .rcb-entry-date {
    color: inherit;
    font-size: 11px;
}

.rcb-resume.template-executive .rcb-tag,
.rcb-resume.template-executive .rcb-language-item {
    color: inherit;
    background: rgba(50, 59, 76, .08);
    border-radius: 0;
    box-shadow: none;
    font-size: 11px;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-editable,
.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(3) .rcb-editable,
.rcb-resume.template-executive .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) .rcb-editable {
    color: #fff;
}

/* 2. Mono Cobalt - measured black/white/blue system */
.rcb-resume.template-modern {
    --resume-dark: #000;
    --resume-accent: #1254ff;
    --resume-accent-soft: #000;
    font-family: "RC DM Sans", Arial, sans-serif;
}

.rcb-resume.template-modern .rcb-resume-shell {
    background: linear-gradient(90deg, #000 0 41.2%, #fff 41.2% 100%);
}

.rcb-resume.template-modern .rcb-resume-header {
    min-height: 315px;
    display: block;
    position: relative;
    padding: 0;
    color: #fff;
    background: transparent;
}

.rcb-resume.template-modern .rcb-resume-photo-wrap {
    width: 188px;
    height: 188px;
    position: absolute;
    left: 66px;
    top: 40px;
    color: #fff;
    background: #111;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
}

.rcb-resume.template-modern .rcb-resume-identity {
    width: 250px;
    position: absolute;
    left: 47px;
    top: 235px;
}

.rcb-resume.template-modern .rcb-resume-identity h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    line-height: .93;
    letter-spacing: -.035em;
    text-transform: uppercase;
    text-shadow: none;
}

.rcb-resume.template-modern .rcb-resume-identity p {
    margin-top: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    text-shadow: none;
}

.rcb-resume.template-modern .rcb-resume-contact {
    width: 385px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    left: 370px;
    top: 174px;
    gap: 12px 18px;
    color: #111;
    font-size: 12px;
}

.rcb-resume.template-modern .rcb-contact-item {
    display: flex;
    gap: 8px;
}

.rcb-resume.template-modern .rcb-contact-item > i {
    width: 22px;
    height: 22px;
    color: #fff;
    background: #000;
}

.rcb-resume.template-modern .rcb-resume-body {
    min-height: 808px;
    display: grid;
    grid-template-columns: 41.2% 58.8%;
    grid-template-rows: 250px 250px 308px;
    padding: 0;
    background: transparent;
}

.rcb-resume.template-modern .rcb-summary-section {
    width: 385px;
    position: absolute;
    left: 370px;
    top: 54px;
    z-index: 2;
}

.rcb-resume.template-modern .rcb-resume-sidebar > .rcb-resume-section:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    padding: 42px 42px 0 48px;
    color: #fff;
}

.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    padding: 18px 42px 0 48px;
    color: #fff;
}

.rcb-resume.template-modern .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    padding: 22px 42px 30px 48px;
    color: #fff;
}

.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(1) {
    grid-column: 2;
    grid-row: 1 / span 2;
    padding: 42px 42px 0 40px;
}

.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(3) {
    grid-column: 2;
    grid-row: 3;
    padding: 22px 42px 30px 40px;
}

.rcb-resume.template-modern .rcb-section-heading {
    min-height: 0;
    margin-bottom: 20px;
    padding: 0;
    border: 0;
}

.rcb-resume.template-modern .rcb-resume-section h2 {
    color: #1254ff;
    font-family: "RC DM Sans", Arial, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.rcb-resume.template-modern .rcb-resume-sidebar > .rcb-resume-section h2,
.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(2) h2 {
    color: #fff;
}

.rcb-resume.template-modern .rcb-resume-section p {
    color: inherit;
    font-size: 12px;
    line-height: 1.55;
}

.rcb-resume.template-modern .rcb-resume-entry {
    margin-bottom: 23px;
}

.rcb-resume.template-modern .rcb-resume-entry h3 {
    color: #111;
    font-size: 16px;
}

.rcb-resume.template-modern .rcb-entry-subtitle,
.rcb-resume.template-modern .rcb-entry-date {
    color: inherit;
    font-size: 11px;
}

.rcb-resume.template-modern .rcb-tag-list {
    display: grid;
    gap: 9px;
}

.rcb-resume.template-modern .rcb-tag,
.rcb-resume.template-modern .rcb-language-item {
    padding: 0;
    color: #fff;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-size: 12px;
}

/* 3. Clean ATS - same measured DM Sans scale, simplified */
.rcb-resume.template-ats {
    --resume-dark: #000;
    --resume-accent: #1254ff;
    --resume-accent-soft: #f5f7ff;
    font-family: "RC DM Sans", Arial, sans-serif;
}

.rcb-resume.template-ats .rcb-resume-header {
    min-height: 190px;
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 38px 52px 28px;
    color: #000;
    background: #fff;
    box-shadow: inset 9px 0 0 #1254ff;
}

.rcb-resume.template-ats .rcb-resume-photo-wrap {
    width: 78px;
    height: 94px;
    color: #fff;
    background: #000;
    border: 0;
    border-radius: 0;
}

.rcb-resume.template-ats .rcb-resume-identity h1 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    text-shadow: none;
}

.rcb-resume.template-ats .rcb-resume-identity p {
    color: #1254ff;
    font-size: 16px;
    text-shadow: none;
}

.rcb-resume.template-ats .rcb-resume-body {
    min-height: 933px;
}

.rcb-resume.template-ats .rcb-resume-sidebar {
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 28px;
    padding: 29px 52px 20px;
    background: #f5f7ff;
}

.rcb-resume.template-ats .rcb-resume-main {
    padding: 25px 52px 45px;
}

.rcb-resume.template-ats .rcb-resume-section h2 {
    color: #1254ff;
    font-family: "RC DM Sans", Arial, sans-serif;
    font-size: 21px;
    letter-spacing: 0;
}

.rcb-resume.template-ats .rcb-resume-section p {
    font-size: 12px;
    line-height: 1.5;
}

.rcb-resume.template-ats .rcb-resume-entry h3 {
    font-size: 15px;
}

.rcb-resume.template-ats .rcb-entry-subtitle,
.rcb-resume.template-ats .rcb-entry-date,
.rcb-resume.template-ats .rcb-tag,
.rcb-resume.template-ats .rcb-language-item {
    font-size: 10px;
}

/* 4. Dark Blue Modern - close visual sibling of reference one */
.rcb-resume.template-creative {
    --resume-dark: #323b4c;
    --resume-accent: #4e607b;
    --resume-accent-soft: #4e607b;
    font-family: "RC Alegreya Sans", Arial, sans-serif;
}

.rcb-resume.template-creative .rcb-resume-header {
    min-height: 225px;
    grid-template-columns: 210px minmax(0, 1fr);
    padding: 25px 52px;
    color: #fff;
    background: #323b4c;
    clip-path: none;
}

.rcb-resume.template-creative .rcb-resume-photo-wrap {
    width: 180px;
    height: 180px;
    border: 5px solid #fff;
    border-radius: 50%;
}

.rcb-resume.template-creative .rcb-resume-identity h1 {
    font-size: 47px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: none;
}

.rcb-resume.template-creative .rcb-resume-identity p {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    text-shadow: none;
}

.rcb-resume.template-creative .rcb-resume-contact {
    grid-column: 2;
    gap: 7px 15px;
    margin-top: 13px;
    font-size: 11px;
}

.rcb-resume.template-creative .rcb-resume-body {
    min-height: 898px;
    grid-template-columns: 39% 61%;
}

.rcb-resume.template-creative .rcb-resume-sidebar {
    padding: 38px 34px 42px 52px;
    color: #fff;
    background: #4e607b;
    border: 0;
}

.rcb-resume.template-creative .rcb-resume-main {
    padding: 38px 48px 42px 39px;
}

.rcb-resume.template-creative .rcb-resume-section {
    margin-bottom: 27px;
}

.rcb-resume.template-creative .rcb-section-heading {
    margin-bottom: 14px;
    padding-bottom: 7px;
    border-bottom: 2px solid currentColor;
}

.rcb-resume.template-creative .rcb-resume-section h2 {
    color: inherit;
    font-size: 22px;
    letter-spacing: 0;
}

.rcb-resume.template-creative .rcb-resume-section h2::before {
    display: none;
}

.rcb-resume.template-creative .rcb-resume-section p {
    color: inherit;
    font-size: 12px;
    line-height: 1.45;
}

.rcb-resume.template-creative .rcb-resume-entry h3 {
    font-size: 15px;
}

.rcb-resume.template-creative .rcb-tag,
.rcb-resume.template-creative .rcb-language-item {
    color: inherit;
    background: rgba(255, 255, 255, .10);
    border-radius: 0;
    box-shadow: none;
}

/* 5. Editorial Timeline - measured Cormorant/Lato slate system */
.rcb-resume.template-classic,
.rcb-resume.template-minimal {
    --resume-dark: #323b4c;
    --resume-accent: #323b4c;
    --resume-accent-soft: #323b4c;
    font-family: "RC Lato", Arial, sans-serif;
}

.rcb-resume.template-classic .rcb-resume-shell {
    background: linear-gradient(90deg, #323b4c 0 34.7%, #fff 34.7% 100%);
}

.rcb-resume.template-classic .rcb-resume-header,
.rcb-resume.template-minimal .rcb-resume-header {
    min-height: 245px;
    display: block;
    position: relative;
    padding: 0;
    color: #323b4c;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.rcb-resume.template-classic .rcb-resume-photo-wrap,
.rcb-resume.template-minimal .rcb-resume-photo-wrap {
    width: 175px;
    height: 175px;
    position: absolute;
    left: 50px;
    top: 29px;
    color: #fff;
    background: #323b4c;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
}

.rcb-resume.template-classic .rcb-resume-identity,
.rcb-resume.template-minimal .rcb-resume-identity {
    position: absolute;
    left: 303px;
    right: 34px;
    top: 54px;
}

.rcb-resume.template-classic .rcb-resume-identity h1,
.rcb-resume.template-minimal .rcb-resume-identity h1 {
    color: #323b4c;
    font-family: "RC DM Sans", Arial, sans-serif;
    font-size: 37px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .11em;
    text-shadow: none;
}

.rcb-resume.template-classic .rcb-resume-identity p,
.rcb-resume.template-minimal .rcb-resume-identity p {
    margin-top: 13px;
    color: #323b4c;
    font-family: "RC DM Sans", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .13em;
    text-shadow: none;
}

.rcb-resume.template-classic .rcb-resume-contact,
.rcb-resume.template-minimal .rcb-resume-contact {
    width: 205px;
    display: grid;
    position: absolute;
    left: 49px;
    top: 226px;
    z-index: 4;
    gap: 7px;
    color: #fff;
    font-size: 11px;
}

.rcb-resume.template-classic .rcb-resume-contact::before,
.rcb-resume.template-minimal .rcb-resume-contact::before {
    content: "Contact";
    margin-bottom: 7px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    font-family: "RC Cormorant Garamond", Georgia, serif;
    font-size: 23px;
    font-weight: 700;
}

.rcb-resume.template-classic .rcb-contact-item,
.rcb-resume.template-minimal .rcb-contact-item {
    display: flex;
    gap: 8px;
}

.rcb-resume.template-classic .rcb-contact-item > i,
.rcb-resume.template-minimal .rcb-contact-item > i {
    width: 16px;
    height: 16px;
    color: inherit;
    background: transparent;
}

.rcb-resume.template-classic .rcb-resume-body,
.rcb-resume.template-minimal .rcb-resume-body {
    min-height: 878px;
    display: grid;
    grid-template-columns: 34.7% 65.3%;
    grid-template-rows: 150px 285px 200px 243px;
    padding: 0;
    background: transparent;
}

.rcb-resume.template-classic .rcb-summary-section,
.rcb-resume.template-minimal .rcb-summary-section {
    grid-column: 2;
    grid-row: 1;
    padding: 28px 42px 0 35px;
}

.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(2),
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    padding: 24px 28px 0 48px;
    color: #fff;
}

.rcb-resume.template-classic .rcb-resume-sidebar > .rcb-resume-section:nth-child(2),
.rcb-resume.template-minimal .rcb-resume-sidebar > .rcb-resume-section:nth-child(2) {
    grid-column: 1;
    grid-row: 3;
    padding: 18px 28px 0 48px;
    color: #fff;
}

.rcb-resume.template-classic .rcb-resume-sidebar > .rcb-resume-section:nth-child(3),
.rcb-resume.template-minimal .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) {
    grid-column: 1;
    grid-row: 4;
    padding: 18px 28px 30px 48px;
    color: #fff;
}

.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(1),
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(1) {
    grid-column: 2;
    grid-row: 2 / span 2;
    position: relative;
    padding: 24px 42px 0 55px;
}

.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(1)::before,
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(1)::before {
    content: "";
    width: 1px;
    position: absolute;
    left: 41px;
    top: 72px;
    bottom: 10px;
    background: #323b4c;
}

.rcb-resume.template-classic #rcb-preview-experience .rcb-resume-entry::before,
.rcb-resume.template-minimal #rcb-preview-experience .rcb-resume-entry::before {
    content: "";
    width: 11px;
    height: 11px;
    position: absolute;
    left: -20px;
    top: 4px;
    z-index: 2;
    background: #fff;
    border: 2px solid #323b4c;
    border-radius: 50%;
}

.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(3),
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(3) {
    grid-column: 2;
    grid-row: 4;
    padding: 18px 42px 30px 35px;
}

.rcb-resume.template-classic .rcb-resume-section h2,
.rcb-resume.template-minimal .rcb-resume-section h2 {
    color: inherit;
    font-family: "RC Cormorant Garamond", Georgia, serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

.rcb-resume.template-classic .rcb-resume-section p,
.rcb-resume.template-minimal .rcb-resume-section p {
    color: inherit;
    font-family: "RC Lato", Arial, sans-serif;
    font-size: 10px;
    line-height: 1.45;
}

.rcb-resume.template-classic .rcb-resume-entry,
.rcb-resume.template-minimal .rcb-resume-entry {
    margin-bottom: 16px;
}

.rcb-resume.template-classic .rcb-resume-entry h3,
.rcb-resume.template-minimal .rcb-resume-entry h3 {
    color: inherit;
    font-family: "RC Lato", Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
}

.rcb-resume.template-classic .rcb-entry-subtitle,
.rcb-resume.template-classic .rcb-entry-date,
.rcb-resume.template-minimal .rcb-entry-subtitle,
.rcb-resume.template-minimal .rcb-entry-date {
    color: inherit;
    font-family: "RC Lato", Arial, sans-serif;
    font-size: 10px;
}

.rcb-resume.template-classic .rcb-tag-list,
.rcb-resume.template-minimal .rcb-tag-list {
    display: grid;
    gap: 7px;
}

.rcb-resume.template-classic .rcb-tag,
.rcb-resume.template-classic .rcb-language-item,
.rcb-resume.template-minimal .rcb-tag,
.rcb-resume.template-minimal .rcb-language-item {
    padding: 0;
    color: inherit;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-family: "RC Lato", Arial, sans-serif;
    font-size: 10px;
}

/* 6. Pure Minimal - white variant of the editorial reference */
.rcb-resume.template-minimal .rcb-resume-shell {
    background: #fff;
}

.rcb-resume.template-minimal .rcb-resume-contact,
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(2),
.rcb-resume.template-minimal .rcb-resume-sidebar > .rcb-resume-section:nth-child(2),
.rcb-resume.template-minimal .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) {
    color: #333132;
}

.rcb-resume.template-minimal .rcb-resume-body {
    background: #fff;
}

.rcb-resume.template-minimal .rcb-resume-photo-wrap {
    color: #fff;
    background: #333132;
}

.rcb-resume.template-minimal .rcb-resume-section h2,
.rcb-resume.template-minimal .rcb-resume-identity h1,
.rcb-resume.template-minimal .rcb-resume-identity p {
    color: #333132;
}

/* 3.1 visual-QA corrections: preserve whole words and keep every block inside A4. */
.rcb-resume.template-executive .rcb-resume-identity h1,
.rcb-resume.template-modern .rcb-resume-identity h1,
.rcb-resume.template-classic .rcb-resume-identity h1,
.rcb-resume.template-minimal .rcb-resume-identity h1 {
    overflow-wrap: normal;
    word-break: normal;
}

.rcb-resume.template-executive .rcb-resume-identity {
    top: 54px;
}

.rcb-resume.template-executive .rcb-resume-identity h1 {
    font-size: 48px;
}

.rcb-resume.template-executive .rcb-resume-identity p {
    margin-top: 15px;
    font-size: 25px;
    line-height: 1.05;
}

.rcb-resume.template-executive .rcb-resume-contact {
    top: 244px;
    gap: 6px;
}

.rcb-resume.template-executive .rcb-resume-contact::before {
    margin-bottom: 4px;
    padding-bottom: 6px;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(3) .rcb-section-heading {
    margin-bottom: 10px;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(3) .rcb-resume-entry {
    margin-bottom: 8px;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(3) p {
    font-size: 11px;
    line-height: 1.28;
}

.rcb-resume.template-modern .rcb-resume-identity {
    width: 274px;
    top: 232px;
}

.rcb-resume.template-modern .rcb-resume-identity h1 {
    font-size: 37px;
    line-height: .92;
    letter-spacing: -.025em;
}

.rcb-resume.template-modern .rcb-resume-identity p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.05;
}

.rcb-resume.template-classic .rcb-resume-identity h1,
.rcb-resume.template-minimal .rcb-resume-identity h1 {
    font-size: 32px;
    letter-spacing: .08em;
}

.rcb-resume.template-classic .rcb-resume-contact,
.rcb-resume.template-minimal .rcb-resume-contact {
    grid-template-columns: minmax(0, 1fr);
}

.rcb-resume.template-classic .rcb-contact-item,
.rcb-resume.template-minimal .rcb-contact-item {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: start;
}

.rcb-resume.template-classic .rcb-contact-item .rcb-editable,
.rcb-resume.template-minimal .rcb-contact-item .rcb-editable {
    overflow-wrap: anywhere;
}

.rcb-resume.template-ats .rcb-resume-header {
    min-height: 170px;
    padding: 27px 52px 20px;
}

.rcb-resume.template-ats .rcb-resume-photo-wrap {
    width: 72px;
    height: 82px;
}

.rcb-resume.template-ats .rcb-resume-identity h1 {
    font-size: 36px;
}

.rcb-resume.template-ats .rcb-resume-identity p {
    font-size: 14px;
}

.rcb-resume.template-ats .rcb-resume-body {
    min-height: 945px;
}

.rcb-resume.template-ats .rcb-resume-sidebar {
    gap: 24px;
    padding: 20px 52px 15px;
}

.rcb-resume.template-ats .rcb-resume-main {
    padding: 19px 52px 27px;
}

.rcb-resume.template-ats .rcb-resume-section {
    margin-bottom: 15px;
}

.rcb-resume.template-ats .rcb-section-heading {
    margin-bottom: 9px;
}

.rcb-resume.template-ats .rcb-resume-section h2 {
    font-size: 18px;
}

.rcb-resume.template-ats .rcb-resume-section p {
    font-size: 11px;
    line-height: 1.4;
}

.rcb-resume.template-ats .rcb-resume-entry {
    margin-bottom: 11px;
}

.rcb-resume.template-ats .rcb-resume-entry h3 {
    font-size: 14px;
}

.rcb-resume.template-creative .rcb-resume-header {
    height: 210px;
    min-height: 210px;
    display: block;
    position: relative;
    padding: 0;
}

.rcb-resume.template-creative .rcb-resume-photo-wrap {
    width: 165px;
    height: 165px;
    position: absolute;
    left: 52px;
    top: 22px;
}

.rcb-resume.template-creative .rcb-resume-identity {
    position: absolute;
    left: 245px;
    right: 42px;
    top: 48px;
}

.rcb-resume.template-creative .rcb-resume-identity h1 {
    font-size: 43px;
}

.rcb-resume.template-creative .rcb-resume-identity p {
    margin-top: 10px;
    font-size: 22px;
}

.rcb-resume.template-creative .rcb-resume-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: absolute;
    left: 245px;
    right: 42px;
    top: 143px;
    margin: 0;
}

.rcb-resume.template-creative.no-photo .rcb-resume-identity,
.rcb-resume.template-creative.no-photo .rcb-resume-contact {
    left: 52px;
}

.rcb-resume.template-creative .rcb-resume-body {
    height: 913px;
    min-height: 913px;
    overflow: hidden;
}

.rcb-resume.template-creative .rcb-resume-sidebar {
    padding: 38px 34px 42px 52px;
}

.rcb-resume.template-creative .rcb-resume-main {
    padding: 38px 48px 42px 39px;
}

.rcb-resume.template-creative .rcb-resume-section {
    margin-bottom: 27px;
}

.rcb-resume.template-creative .rcb-section-heading {
    margin-bottom: 14px;
}

.rcb-resume.template-creative .rcb-resume-section h2 {
    font-size: 22px;
}

.rcb-resume.template-creative .rcb-resume-section p {
    font-size: 12px;
    line-height: 1.45;
}

.rcb-resume.template-creative .rcb-resume-entry {
    margin-bottom: 18px;
}

.rcb-resume.template-creative .rcb-resume-entry h3 {
    font-size: 15px;
}

.rcb-resume.template-executive.no-photo .rcb-resume-identity {
    left: 60px;
}

.rcb-resume.template-modern.no-photo .rcb-resume-identity {
    top: 92px;
}

.rcb-resume.template-classic.no-photo .rcb-resume-identity,
.rcb-resume.template-minimal.no-photo .rcb-resume-identity {
    left: 49px;
}

/* Updated chooser previews */
.rcb-swatch-executive { background: linear-gradient(90deg, #4e607b 0 39%, #fff 39%); border-top: 11px solid #323b4c; border-left: 0; }
.rcb-swatch-modern { background: linear-gradient(90deg, #000 0 41%, #fff 41%); border-top: 5px solid #1254ff; }
.rcb-swatch-ats { background: linear-gradient(180deg, #fff 0 28%, #1254ff 28% 33%, #fff 33%); }
.rcb-swatch-creative { background: linear-gradient(90deg, #4e607b 0 39%, #fff 39%); border-top: 10px solid #323b4c; }
.rcb-swatch-classic { background: linear-gradient(90deg, #323b4c 0 35%, #fff 35%); border-top: 0; }
.rcb-swatch-minimal { background: #fff; border: 1px solid #333132; border-bottom: 5px solid #333132; }

.rcb-thumb-executive { color: #fff; background: linear-gradient(90deg, #4e607b 0 39%, #fff 39%); border-top: 17px solid #323b4c; }
.rcb-thumb-modern { color: #fff; background: linear-gradient(90deg, #000 0 41%, #fff 41%); border-top: 5px solid #1254ff; border-left: 0; }
.rcb-thumb-ats { color: #000; background: #fff; border-top: 5px solid #1254ff; }
.rcb-thumb-creative { color: #fff; background: linear-gradient(90deg, #4e607b 0 39%, #fff 39%); border-top: 15px solid #323b4c; }
.rcb-thumb-classic { color: #323b4c; background: linear-gradient(90deg, #323b4c 0 35%, #fff 35%); border-top: 0; }
.rcb-thumb-minimal { color: #333132; background: #fff; border: 1px solid #333132; border-bottom: 5px solid #333132; }

.rcb-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 99999;
    max-width: calc(100vw - 32px);
    padding: 12px 17px;
    transform: translateX(-50%);
    color: #fff;
    background: #101828;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(16, 24, 40, .28);
    font-size: 11px;
    font-weight: 750;
}

.rcb-resume.is-exporting .rcb-inline-add,
.rcb-resume.is-exporting .rcb-inline-remove,
.rcb-resume.is-exporting .rcb-photo-hover {
    display: none !important;
}

.rcb-resume.is-exporting .rcb-editable {
    pointer-events: none;
    outline: 0 !important;
}

.rcb-resume.is-exporting .rcb-resume-entry {
    background: transparent;
    box-shadow: none;
}

.rcb-resume.is-exporting .rcb-resume-photo-wrap {
    transform: none;
}

@media (hover: none) {
    .rcb-inline-add { opacity: .72; }
    .rcb-resume-entry > .rcb-inline-remove,
    .rcb-token > .rcb-inline-remove,
    .rcb-language-item > .rcb-inline-remove { opacity: .72; transform: scale(.9); }
}

@media (max-width: 900px) {
    .rcb-app { border-radius: 0; border-left: 0; border-right: 0; }
    .rcb-toolbar { align-items: flex-start; }
    .rcb-save-status { display: none; }
    .rcb-design-bar { align-items: flex-start; flex-direction: column; gap: 13px; }
    .rcb-design-controls { width: 100%; justify-content: stretch; }
    .rcb-template-control { flex: 1 1 55%; }
    .rcb-photo-choice { flex: 1 1 45%; }
    .rcb-template-menu { left: 0; right: auto; }
}

@media (max-width: 620px) {
    .rcb-toolbar { min-height: 68px; align-items: center; padding: 11px 13px; }
    .rcb-brand { min-width: 0; }
    .rcb-brand-mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 12px; }
    .rcb-brand div > span { display: none; }
    .rcb-toolbar-actions { gap: 5px; }
    .rcb-toolbar-actions .rcb-btn-ghost { display: none; }
    .rcb-toolbar-actions .rcb-btn-dark {
        position: fixed;
        left: 13px;
        right: 13px;
        bottom: 12px;
        z-index: 90;
        width: calc(100% - 26px);
        min-height: 48px;
        color: #0b0f14;
        background: var(--rcb-lime);
        box-shadow: 0 12px 32px rgba(16, 24, 40, .32);
    }
    .rcb-design-bar { padding: 12px 13px; }
    .rcb-guide { min-width: 0; }
    .rcb-guide small { font-size: 9px; }
    .rcb-design-controls { align-items: stretch; flex-direction: column; gap: 9px; }
    .rcb-template-control,
    .rcb-photo-choice { width: 100%; min-width: 0; }
    .rcb-template-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 8px; }
    .rcb-template-option { display: block; padding: 7px; text-align: center; }
    .rcb-template-thumb { width: 100%; height: 94px; margin-bottom: 7px; text-align: left; }
    .rcb-template-copy small { display: none; }
    .rcb-segment { min-height: 43px; }
    .rcb-workspace { padding: 14px 8px 78px; }
    .rcb-canvas-meta { padding: 0 5px; font-size: 8px; }
    .rcb-canvas-meta > span:last-child { display: none; }
    .rcb-preview-stage { border-radius: 10px; }
}

@media print {
    body * {
        visibility: hidden !important;
    }
    #rcb-resume-preview,
    #rcb-resume-preview * {
        visibility: visible !important;
    }
    #rcb-resume-preview {
        width: 210mm !important;
        min-height: 297mm !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0 !important;
        transform: none !important;
        box-shadow: none !important;
    }
    #rcb-resume-preview .rcb-inline-add,
    #rcb-resume-preview .rcb-inline-remove,
    #rcb-resume-preview .rcb-photo-hover {
        display: none !important;
    }
    #rcb-resume-preview .rcb-editable {
        outline: 0 !important;
        box-shadow: none !important;
    }
}

/* Version 3.2 — static interaction style and guarded A4 content regions. */
.rcb-app,
.rcb-app *,
.rcb-app *::before,
.rcb-app *::after {
    box-shadow: none !important;
    text-shadow: none !important;
    transition: none !important;
    animation: none !important;
}

.rcb-brand:hover .rcb-brand-mark,
.rcb-btn:hover,
.rcb-template-trigger:hover,
.rcb-template-option:hover,
.rcb-resume-photo-wrap:hover,
.rcb-inline-add:hover,
.rcb-inline-remove:hover {
    transform: none;
}

.rcb-btn-ghost:hover {
    color: #fff;
    background: #151b23;
    border-color: #3a414c;
}

.rcb-btn-dark:hover {
    color: var(--rcb-black);
    background: var(--rcb-lime);
    border-color: var(--rcb-lime);
}

.rcb-template-trigger:hover {
    border-color: #d0d5dd;
}

.rcb-template-option:hover {
    color: var(--rcb-ink);
    background: #fff;
    border-color: var(--rcb-border);
}

.rcb-template-option.is-selected,
.rcb-template-option.is-selected:hover {
    color: #fff;
    background: #101828;
    border-color: #101828;
}

.rcb-segment:hover {
    color: #475467;
    background: #fff;
}

.rcb-segment.is-selected,
.rcb-segment.is-selected:hover {
    color: #fff;
    background: #101828;
    border-color: #101828;
}

.rcb-resume-photo-wrap:hover {
    transform: none;
}

.rcb-photo-hover,
.rcb-resume-photo-wrap:hover .rcb-photo-hover,
.rcb-resume-photo-wrap:focus .rcb-photo-hover {
    display: none;
}

.rcb-editable:hover,
.rcb-resume-body .rcb-editable:hover {
    background: transparent;
    outline-color: transparent;
}

.rcb-inline-add,
.rcb-resume-section:hover .rcb-inline-add {
    opacity: .72;
}

.rcb-inline-add:hover {
    color: var(--resume-dark);
    background: #fff;
    border-color: rgba(15, 37, 55, .25);
}

.rcb-inline-remove,
.rcb-resume-entry:hover > .rcb-inline-remove,
.rcb-token:hover > .rcb-inline-remove,
.rcb-language-item:hover > .rcb-inline-remove {
    opacity: 0;
    transform: none;
    pointer-events: none;
}

.rcb-resume-entry:focus-within > .rcb-inline-remove,
.rcb-token:focus-within > .rcb-inline-remove,
.rcb-language-item:focus-within > .rcb-inline-remove,
.rcb-inline-remove:focus {
    opacity: .72;
    pointer-events: auto;
}

.rcb-inline-remove:hover {
    color: #b42318;
    background: #fff;
    border-color: #f1b4af;
}

.rcb-resume-entry:hover {
    background: transparent;
}

.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry h3 {
    color: inherit;
}

.rcb-resume.template-modern .rcb-summary-section .rcb-section-heading {
    display: none;
}

.rcb-resume.template-modern .rcb-summary-section p,
.rcb-resume.template-modern .rcb-summary-section .rcb-editable {
    color: #333;
}

.rcb-resume,
.rcb-resume-shell {
    height: 1123px;
    min-height: 1123px;
    overflow: hidden;
}

.rcb-resume.template-executive .rcb-resume-section,
.rcb-resume.template-modern .rcb-resume-section,
.rcb-resume.template-classic .rcb-resume-section,
.rcb-resume.template-minimal .rcb-resume-section {
    overflow: clip;
    overflow-clip-margin: 3px;
}

.rcb-resume.template-executive .rcb-resume-contact {
    max-height: 164px;
    overflow: hidden;
}

.rcb-resume.template-modern .rcb-resume-contact {
    max-height: 96px;
    overflow: hidden;
}

.rcb-resume.template-classic .rcb-resume-contact,
.rcb-resume.template-minimal .rcb-resume-contact {
    max-height: 170px;
    overflow: hidden;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry,
.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry,
.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry,
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry {
    margin-bottom: 9px;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry h3,
.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry h3,
.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry h3,
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry h3 {
    font-size: 12px;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry p,
.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry p,
.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry p,
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-resume-entry p {
    font-size: 9px;
    line-height: 1.32;
}

.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-entry-subtitle,
.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-entry-date,
.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-entry-subtitle,
.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-entry-date,
.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-entry-subtitle,
.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-entry-date,
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-entry-subtitle,
.rcb-resume.template-minimal .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-entry-date {
    font-size: 9px;
}

/* Version 3.3 — simplified builder header and contrast-aware add controls. */
.rcb-toolbar {
    min-height: 72px;
    padding: 13px 24px;
}

.rcb-toolbar-actions {
    margin-left: auto;
}

.rcb-design-bar {
    display: block;
    min-height: 0;
    padding: 32px 32px 28px;
}

.rcb-builder-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.rcb-builder-intro h1 {
    margin: 0;
    color: #101828;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.rcb-builder-intro p {
    max-width: 680px;
    margin: 12px auto 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

.rcb-design-controls {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    margin-top: 27px;
}

.rcb-template-control,
.rcb-photo-choice {
    width: min(320px, 42%);
    min-width: 260px;
}

.rcb-template-trigger {
    min-height: 58px;
    border-color: #101828;
    border-radius: 14px;
}

.rcb-template-trigger strong {
    font-size: 13px;
}

.rcb-template-trigger small {
    font-size: 9px;
}

.rcb-template-menu {
    left: 0;
    right: auto;
}

.rcb-photo-choice {
    align-self: end;
}

.rcb-segment {
    min-height: 58px;
    font-size: 11px;
}

.rcb-visually-hidden {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.rcb-workspace {
    padding-top: 26px;
}

.rcb-inline-remove {
    display: none !important;
}

.rcb-inline-add,
.rcb-resume-section:hover .rcb-inline-add,
.rcb-inline-add:focus,
.rcb-inline-add:hover {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: #fff;
    background: #323b4c;
    border: 0;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    opacity: 1;
    transform: none;
}

/* Light + control on template areas with a dark background. */
.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-inline-add,
.rcb-resume.template-executive .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) .rcb-inline-add,
.rcb-resume.template-executive .rcb-resume-main > .rcb-resume-section:nth-child(3) .rcb-inline-add,
.rcb-resume.template-modern .rcb-resume-sidebar > .rcb-resume-section:nth-child(2) .rcb-inline-add,
.rcb-resume.template-modern .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-inline-add,
.rcb-resume.template-modern .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) .rcb-inline-add,
.rcb-resume.template-classic .rcb-resume-main > .rcb-resume-section:nth-child(2) .rcb-inline-add,
.rcb-resume.template-classic .rcb-resume-sidebar > .rcb-resume-section:nth-child(2) .rcb-inline-add,
.rcb-resume.template-classic .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) .rcb-inline-add {
    color: #323b4c;
    background: #fff;
}

@media (max-width: 760px) {
    .rcb-design-bar {
        padding: 25px 16px 22px;
    }

    .rcb-builder-intro h1 {
        font-size: 36px;
    }

    .rcb-builder-intro p {
        font-size: 12px;
    }

    .rcb-design-controls {
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
    }

    .rcb-template-control,
    .rcb-photo-choice {
        width: 100%;
        min-width: 0;
    }

    .rcb-template-menu {
        width: 100%;
    }
}

/* Version 3.4 — compact hero download action and theme-proof add icons. */
.rcb-design-bar {
    padding: 34px 34px 28px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.rcb-builder-hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.rcb-builder-intro {
    max-width: 760px;
    margin: 0;
    text-align: left;
}

.rcb-builder-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #475467;
    font-size: 10px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.rcb-builder-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    background: #c8ff32;
    border: 1px solid #101828;
    border-radius: 50%;
}

.rcb-builder-intro h1 {
    font-size: clamp(38px, 4vw, 52px);
}

.rcb-builder-intro p {
    max-width: 650px;
    margin: 11px 0 0;
}

.rcb-download-compact {
    min-width: 154px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    padding: 9px 11px 9px 16px;
    color: #fff;
    background: #101828;
    border: 1px solid #101828;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
}

.rcb-download-compact:hover,
.rcb-download-compact:focus {
    color: #fff;
    background: #101828;
    border-color: #101828;
    transform: none;
}

.rcb-download-compact:disabled {
    cursor: wait;
    opacity: .7;
}

.rcb-download-arrow {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    color: #101828;
    background: #c8ff32;
    border-radius: 7px;
    font-size: 14px;
    line-height: 1;
}

.rcb-design-controls {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #e4e7ec;
}

.rcb-inline-add,
.rcb-resume-section:hover .rcb-inline-add,
.rcb-inline-add:focus,
.rcb-inline-add:hover {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    display: inline-grid !important;
    place-items: center !important;
    position: relative !important;
    flex: 0 0 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: 0 !important;
    vertical-align: middle !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.rcb-inline-add::before {
    content: "+";
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    position: absolute;
    inset: 0;
    color: inherit;
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

@media (max-width: 760px) {
    .rcb-design-bar {
        padding: 25px 16px 22px;
    }

    .rcb-builder-hero-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .rcb-builder-intro h1 {
        font-size: 38px;
    }

    .rcb-download-compact {
        min-width: 145px;
        min-height: 42px;
    }

    .rcb-design-controls {
        margin-top: 22px;
        padding-top: 18px;
    }
}

/* Version 3.5 — separate template gallery and two simple single-column resumes. */
.rcb-template-trigger small span {
    display: inline;
    color: #475467;
}

.rcb-template-menu {
    width: 100%;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    z-index: auto;
    margin-top: 20px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #d0d5dd;
    border-radius: 16px;
}

.rcb-template-menu[hidden] {
    display: none;
}

.rcb-template-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rcb-template-panel-heading strong,
.rcb-template-panel-heading small {
    display: block;
}

.rcb-template-panel-heading strong {
    color: #101828;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
}

.rcb-template-panel-heading small {
    margin-top: 5px;
    color: #667085;
    font-size: 10px;
    line-height: 1.45;
}

.rcb-template-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.rcb-template-option,
.rcb-template-option:hover {
    min-height: 132px;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 13px;
    padding: 10px;
    transform: none;
}

.rcb-template-thumb {
    width: 82px;
    height: 108px;
    padding: 11px 8px 7px;
}

.rcb-template-thumb > b {
    font-size: 5px;
}

.rcb-template-thumb > em {
    font-size: 4px;
}

.rcb-template-thumb > span i {
    height: 2px;
    margin-top: 5px;
}

.rcb-template-copy strong {
    font-size: 12px;
    line-height: 1.25;
}

.rcb-template-copy small {
    font-size: 9px;
}

.rcb-swatch-simple {
    background: linear-gradient(180deg, #fff 0 22%, #1d2939 22% 24%, #fff 24% 100%);
    border: 1px solid #667085;
}

.rcb-swatch-clean {
    background: linear-gradient(180deg, #fff 0 14%, #344054 14% 16%, #fff 16% 48%, #d0d5dd 48% 50%, #fff 50% 100%);
    border: 1px solid #98a2b3;
}

.rcb-thumb-simple,
.rcb-thumb-clean {
    padding: 13px 9px 7px;
    color: #111;
    background: #fff;
    border: 1px solid #98a2b3;
}

.rcb-thumb-simple {
    border-top: 7px solid #1d2939;
}

.rcb-thumb-clean {
    padding-top: 18px;
    text-align: center;
}

.rcb-thumb-simple .rcb-thumb-photo,
.rcb-thumb-clean .rcb-thumb-photo {
    display: none;
}

.rcb-thumb-simple > span,
.rcb-thumb-clean > span {
    margin-top: 10px;
}

.rcb-thumb-simple > span i {
    background: #98a2b3;
}

.rcb-thumb-clean > span i {
    width: 88%;
    margin-right: auto;
    margin-left: auto;
    background: #c5cad3;
}

/* Shared A4 foundation for the two new reference-inspired templates. */
.rcb-resume.template-simple,
.rcb-resume.template-clean {
    --resume-dark: #151515;
    --resume-accent: #151515;
    width: 794px;
    height: 1123px;
    min-height: 1123px;
    padding: 0;
    overflow: hidden;
    color: #1b1b1b;
    background: #fff;
    font-family: Calibri, "Segoe UI", Arial, sans-serif;
}

.rcb-resume.template-simple .rcb-resume-shell,
.rcb-resume.template-clean .rcb-resume-shell {
    height: 1123px;
    min-height: 1123px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.rcb-resume.template-simple .rcb-resume-sidebar,
.rcb-resume.template-simple .rcb-resume-main,
.rcb-resume.template-clean .rcb-resume-sidebar,
.rcb-resume.template-clean .rcb-resume-main {
    min-width: 0;
    min-height: 0;
    display: contents;
    padding: 0;
    color: inherit;
    background: transparent;
}

.rcb-resume.template-simple .rcb-resume-section,
.rcb-resume.template-clean .rcb-resume-section {
    min-width: 0;
    margin: 0;
    overflow: clip;
    overflow-clip-margin: 3px;
}

.rcb-resume.template-simple .rcb-resume-photo-wrap,
.rcb-resume.template-clean .rcb-resume-photo-wrap {
    display: grid;
    place-items: center;
    position: absolute;
    color: #fff;
    background: #28313f;
    border: 0;
    box-shadow: none;
    font-family: Arial, sans-serif;
}

.rcb-resume.template-simple .rcb-resume-identity h1,
.rcb-resume.template-clean .rcb-resume-identity h1,
.rcb-resume.template-simple .rcb-resume-identity p,
.rcb-resume.template-clean .rcb-resume-identity p {
    color: #111;
    text-shadow: none;
    overflow-wrap: normal;
    word-break: normal;
}

.rcb-resume.template-simple .rcb-resume-contact,
.rcb-resume.template-clean .rcb-resume-contact {
    max-height: 44px;
    overflow: hidden;
    color: #303030;
}

.rcb-resume.template-simple .rcb-contact-item,
.rcb-resume.template-clean .rcb-contact-item {
    min-width: 0;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rcb-resume.template-simple .rcb-contact-item > i,
.rcb-resume.template-clean .rcb-contact-item > i {
    display: none;
}

.rcb-resume.template-simple .rcb-section-heading,
.rcb-resume.template-clean .rcb-section-heading {
    min-height: 30px;
    display: flex;
    align-items: center;
    margin: 0 0 8px;
    padding: 0 0 5px;
}

.rcb-resume.template-simple .rcb-resume-section h2::before,
.rcb-resume.template-clean .rcb-resume-section h2::before {
    display: none;
}

.rcb-resume.template-simple .rcb-resume-section p,
.rcb-resume.template-clean .rcb-resume-section p {
    color: #202020;
    font-size: 10px;
    line-height: 1.4;
}

.rcb-resume.template-simple .rcb-resume-entry,
.rcb-resume.template-clean .rcb-resume-entry {
    margin: 0 0 10px;
    padding: 0;
    border-radius: 0;
}

.rcb-resume.template-simple .rcb-resume-entry-head,
.rcb-resume.template-clean .rcb-resume-entry-head {
    gap: 14px;
    margin-bottom: 3px;
}

.rcb-resume.template-simple .rcb-resume-entry h3,
.rcb-resume.template-clean .rcb-resume-entry h3 {
    color: #111;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.rcb-resume.template-simple .rcb-entry-subtitle,
.rcb-resume.template-simple .rcb-entry-date,
.rcb-resume.template-clean .rcb-entry-subtitle,
.rcb-resume.template-clean .rcb-entry-date {
    color: #404040;
    font-size: 9px;
    line-height: 1.25;
}

.rcb-resume.template-simple .rcb-tag-list,
.rcb-resume.template-clean .rcb-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
}

.rcb-resume.template-simple .rcb-tag,
.rcb-resume.template-simple .rcb-language-item,
.rcb-resume.template-clean .rcb-tag,
.rcb-resume.template-clean .rcb-language-item {
    padding: 0;
    color: #202020;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.rcb-resume.template-simple .rcb-language-list,
.rcb-resume.template-clean .rcb-language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
}

.rcb-resume.template-simple .rcb-inline-add,
.rcb-resume.template-simple .rcb-inline-add:hover,
.rcb-resume.template-clean .rcb-inline-add,
.rcb-resume.template-clean .rcb-inline-add:hover {
    color: #fff;
    background: #202020;
}

/* Simple Standard — compact, familiar, single-column composition. */
.rcb-resume.template-simple .rcb-resume-header {
    height: 176px;
    min-height: 176px;
    display: block;
    position: relative;
    padding: 0;
    color: #111;
    background: #fff;
    border-top: 9px solid #1d2939;
}

.rcb-resume.template-simple .rcb-resume-photo-wrap {
    width: 86px;
    height: 102px;
    left: 60px;
    top: 28px;
    border-radius: 2px;
    font-size: 20px;
}

.rcb-resume.template-simple .rcb-resume-identity {
    position: absolute;
    left: 172px;
    right: 58px;
    top: 29px;
    padding-bottom: 12px;
    border-bottom: 1px solid #111;
}

.rcb-resume.template-simple.no-photo .rcb-resume-identity {
    left: 60px;
}

.rcb-resume.template-simple .rcb-resume-identity h1 {
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

.rcb-resume.template-simple .rcb-resume-identity p {
    margin: 7px 0 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: .015em;
    text-transform: none;
}

.rcb-resume.template-simple .rcb-resume-contact {
    display: grid;
    grid-template-columns: 1.12fr .9fr .92fr 1.1fr;
    position: absolute;
    left: 172px;
    right: 58px;
    top: 113px;
    gap: 10px;
    font-size: 9px;
    line-height: 1.25;
}

.rcb-resume.template-simple.no-photo .rcb-resume-contact {
    left: 60px;
}

.rcb-resume.template-simple .rcb-resume-body {
    height: 947px;
    min-height: 947px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 112px 312px 170px 108px 170px 75px;
    padding: 0;
    background: #fff;
}

.rcb-resume.template-simple .rcb-summary-section {
    grid-row: 1;
    padding: 10px 60px 8px;
}

.rcb-resume.template-simple .rcb-resume-main > .rcb-resume-section:nth-child(1) {
    grid-row: 2;
    padding: 10px 60px 8px;
}

.rcb-resume.template-simple .rcb-resume-main > .rcb-resume-section:nth-child(2) {
    grid-row: 3;
    padding: 10px 60px 8px;
}

.rcb-resume.template-simple .rcb-resume-sidebar > .rcb-resume-section:nth-child(2) {
    grid-row: 4;
    padding: 10px 60px 8px;
}

.rcb-resume.template-simple .rcb-resume-main > .rcb-resume-section:nth-child(3) {
    grid-row: 5;
    padding: 10px 60px 8px;
}

.rcb-resume.template-simple .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) {
    grid-row: 6;
    padding: 9px 60px 8px;
}

.rcb-resume.template-simple .rcb-section-heading {
    border-bottom: 1px solid #111;
}

.rcb-resume.template-simple .rcb-resume-section h2 {
    color: #111;
    font-family: Calibri, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

/* Essential Mono — restrained spacing and centred monochrome typography. */
.rcb-resume.template-clean {
    font-family: Arial, Helvetica, sans-serif;
}

.rcb-resume.template-clean .rcb-resume-header {
    height: 202px;
    min-height: 202px;
    display: block;
    position: relative;
    padding: 0;
    color: #111;
    background: #fff;
}

.rcb-resume.template-clean .rcb-resume-photo-wrap {
    width: 78px;
    height: 78px;
    left: 64px;
    top: 43px;
    border-radius: 50%;
    font-size: 18px;
}

.rcb-resume.template-clean .rcb-resume-identity {
    position: absolute;
    left: 172px;
    right: 58px;
    top: 43px;
    text-align: center;
}

.rcb-resume.template-clean.no-photo .rcb-resume-identity {
    left: 58px;
}

.rcb-resume.template-clean .rcb-resume-identity h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.rcb-resume.template-clean .rcb-resume-identity p {
    margin: 10px 0 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.rcb-resume.template-clean .rcb-resume-contact {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: absolute;
    left: 64px;
    right: 58px;
    top: 141px;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid #9ca3af;
    font-size: 8.5px;
    line-height: 1.3;
    text-align: center;
}

.rcb-resume.template-clean .rcb-resume-body {
    height: 921px;
    min-height: 921px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 120px 298px 170px 100px 168px 65px;
    padding: 0;
    background: #fff;
}

.rcb-resume.template-clean .rcb-summary-section {
    grid-row: 1;
    padding: 12px 70px 8px;
}

.rcb-resume.template-clean .rcb-resume-main > .rcb-resume-section:nth-child(1) {
    grid-row: 2;
    padding: 11px 70px 8px;
}

.rcb-resume.template-clean .rcb-resume-main > .rcb-resume-section:nth-child(2) {
    grid-row: 3;
    padding: 10px 70px 8px;
}

.rcb-resume.template-clean .rcb-resume-sidebar > .rcb-resume-section:nth-child(2) {
    grid-row: 4;
    padding: 9px 70px 7px;
}

.rcb-resume.template-clean .rcb-resume-main > .rcb-resume-section:nth-child(3) {
    grid-row: 5;
    padding: 9px 70px 7px;
}

.rcb-resume.template-clean .rcb-resume-sidebar > .rcb-resume-section:nth-child(3) {
    grid-row: 6;
    padding: 8px 70px 7px;
}

.rcb-resume.template-clean .rcb-section-heading {
    margin-bottom: 10px;
    padding: 0;
    border: 0;
}

.rcb-resume.template-clean .rcb-resume-section h2 {
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.rcb-resume.template-clean .rcb-resume-section p {
    font-size: 10px;
    line-height: 1.45;
}

.rcb-resume.template-clean .rcb-resume-entry {
    margin-bottom: 12px;
}

.rcb-resume.template-clean .rcb-tag,
.rcb-resume.template-clean .rcb-language-item {
    font-weight: 400;
}

@media (max-width: 900px) {
    .rcb-template-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .rcb-template-menu {
        margin-top: 14px;
        padding: 13px;
        border-radius: 13px;
    }

    .rcb-template-panel-heading {
        margin-bottom: 12px;
    }

    .rcb-template-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 9px;
        padding: 0;
    }

    .rcb-template-option,
    .rcb-template-option:hover {
        min-height: 116px;
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr);
        padding: 8px;
        text-align: left;
    }

    .rcb-template-thumb {
        width: 72px;
        height: 96px;
        margin: 0;
    }

    .rcb-template-copy small {
        display: block;
    }
}
