/* ═══════════════════════════════════════════════════════════
   ResumeForge — CV Templates Styles
   6 templates: Meridian, Atlas, Vertex, Pinnacle, Nova, Slate
   ═══════════════════════════════════════════════════════════ */

/* ─── Common CV Base ─── */
.cv-paper {
    font-size: 11px;
    line-height: 1.55;
    color: #1a1a2e;
    position: relative;
}

.cv-paper * {
    box-sizing: border-box;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEMPLATE 1: MERIDIAN
   Corporate · 2-col · Navy sidebar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.t-meridian {
    --t-primary: #1a2744;
    --t-accent: #c8a96e;
    --t-text: #2c2c3e;
    --t-muted: #7a7a8a;
    --t-border: #e8e4dc;
    --t-sidebar-w: 220px;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    min-height: 1123px;
}

.t-meridian .cv-sidebar {
    width: var(--t-sidebar-w);
    background: var(--t-primary);
    padding: 36px 22px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.t-meridian .cv-main {
    flex: 1;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Meridian Photo */
.t-meridian .cv-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--t-accent);
    display: block;
    margin: 0 auto 16px;
}

.t-meridian .cv-photo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    margin: 0 auto 16px;
}

/* Meridian Header (in sidebar) */
.t-meridian .cv-name {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.t-meridian .cv-title {
    font-size: 10.5px;
    color: var(--t-accent);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
}

/* Meridian Sidebar Sections */
.t-meridian .cv-s-title {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--t-accent);
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(200, 169, 110, 0.3);
    margin-bottom: 12px;
}

.t-meridian .cv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10.5px;
    line-height: 1.4;
}

.t-meridian .cv-contact-icon {
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.6;
    font-size: 11px;
    width: 12px;
    text-align: center;
}

.t-meridian .cv-skill-item {
    margin-bottom: 10px;
}

.t-meridian .cv-skill-name {
    color: rgba(255, 255, 255, 0.85);
    font-size: 10.5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.t-meridian .cv-skill-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.t-meridian .cv-skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--t-accent), rgba(200, 169, 110, 0.6));
    border-radius: 4px;
}

.t-meridian .cv-lang-item {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10.5px;
    margin-bottom: 6px;
}

.t-meridian .cv-lang-level {
    color: var(--t-accent);
    font-size: 10px;
}

/* Meridian Main Sections */
.t-meridian .cv-section {}

.t-meridian .cv-m-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--t-primary);
    padding-bottom: 6px;
    border-bottom: 2px solid var(--t-primary);
    margin-bottom: 14px;
}

.t-meridian .cv-summary {
    font-size: 11px;
    color: var(--t-text);
    line-height: 1.65;
}

.t-meridian .cv-exp-item {
    margin-bottom: 18px;
}

.t-meridian .cv-exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
}

.t-meridian .cv-exp-role {
    font-weight: 600;
    font-size: 12px;
    color: var(--t-text);
}

.t-meridian .cv-exp-dates {
    font-size: 10px;
    color: var(--t-muted);
    flex-shrink: 0;
    margin-left: 8px;
}

.t-meridian .cv-exp-company {
    font-size: 11px;
    color: #1a2744;
    font-weight: 500;
    margin-bottom: 6px;
}

.t-meridian .cv-exp-bullets {
    padding-left: 0;
    list-style: none;
}

.t-meridian .cv-exp-bullets li {
    font-size: 10.5px;
    color: var(--t-muted);
    line-height: 1.55;
    padding-left: 14px;
    position: relative;
    margin-bottom: 3px;
}

.t-meridian .cv-exp-bullets li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--t-accent);
    font-size: 9px;
    top: 2px;
}

.t-meridian .cv-edu-item {
    margin-bottom: 14px;
}

.t-meridian .cv-edu-degree {
    font-weight: 600;
    font-size: 11.5px;
    color: var(--t-text);
}

.t-meridian .cv-edu-school {
    font-size: 11px;
    color: #1a2744;
    margin-top: 2px;
}

.t-meridian .cv-edu-dates {
    font-size: 10px;
    color: var(--t-muted);
}

/* Tags (projects, certs) */
.t-meridian .cv-tag {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(26, 39, 68, 0.08);
    border-radius: 3px;
    font-size: 9.5px;
    color: var(--t-primary);
    margin: 2px 3px 2px 0;
    font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEMPLATE 2: ATLAS
   ATS-Friendly · Single Column · Minimal
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.t-atlas {
    --t-primary: #1e1e2e;
    --t-accent: #2563eb;
    --t-muted: #64748b;
    --t-border: #e2e8f0;
    font-family: 'DM Sans', sans-serif;
    padding: 48px 52px;
}

.t-atlas .cv-header-block {
    border-bottom: 2px solid var(--t-primary);
    padding-bottom: 18px;
    margin-bottom: 24px;
}

.t-atlas .cv-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--t-primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.t-atlas .cv-title {
    font-size: 13px;
    color: var(--t-accent);
    font-weight: 500;
    margin-top: 4px;
}

.t-atlas .cv-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-top: 10px;
}

.t-atlas .cv-contact-item {
    font-size: 10.5px;
    color: var(--t-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.t-atlas .cv-section {
    margin-bottom: 22px;
}

.t-atlas .cv-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--t-accent);
    margin-bottom: 10px;
}

.t-atlas .cv-summary {
    font-size: 11px;
    line-height: 1.7;
    color: #374151;
}

.t-atlas .cv-exp-item {
    margin-bottom: 16px;
}

.t-atlas .cv-exp-header {
    display: flex;
    justify-content: space-between;
}

.t-atlas .cv-exp-role {
    font-weight: 600;
    font-size: 11.5px;
}

.t-atlas .cv-exp-dates {
    font-size: 10px;
    color: var(--t-muted);
}

.t-atlas .cv-exp-company {
    font-size: 11px;
    color: var(--t-accent);
    margin-bottom: 5px;
}

.t-atlas .cv-exp-bullets {
    list-style: disc;
    padding-left: 16px;
    margin-top: 4px;
}

.t-atlas .cv-exp-bullets li {
    font-size: 10.5px;
    color: #374151;
    margin-bottom: 3px;
    line-height: 1.55;
}

.t-atlas .cv-skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.t-atlas .cv-skill-tag {
    padding: 4px 10px;
    border: 1px solid var(--t-border);
    border-radius: 4px;
    font-size: 10.5px;
    color: var(--t-muted);
    background: #f8fafc;
}

.t-atlas .cv-edu-item {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.t-atlas .cv-edu-degree {
    font-weight: 600;
    font-size: 11px;
}

.t-atlas .cv-edu-school {
    font-size: 10.5px;
    color: var(--t-muted);
    margin-top: 2px;
}

.t-atlas .cv-edu-dates {
    font-size: 10px;
    color: var(--t-muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEMPLATE 3: VERTEX
   Modern · 2-col · Bold Header
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.t-vertex {
    --t-primary: #0f172a;
    --t-accent: #7c3aed;
    --t-accent2: #db2777;
    --t-muted: #64748b;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 1123px;
}

.t-vertex .cv-header {
    background: linear-gradient(135deg, var(--t-primary) 0%, #1e1b4b 100%);
    padding: 40px 44px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.t-vertex .cv-photo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.t-vertex .cv-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.t-vertex .cv-header-info {
    flex: 1;
}

.t-vertex .cv-name {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.t-vertex .cv-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.t-vertex .cv-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.t-vertex .cv-contact-item {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 5px;
}

.t-vertex .cv-body {
    display: flex;
    flex: 1;
}

.t-vertex .cv-main {
    flex: 1;
    padding: 32px 36px;
}

.t-vertex .cv-sidebar {
    width: 210px;
    background: #f8fafc;
    padding: 32px 22px;
    border-left: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.t-vertex .cv-section {
    margin-bottom: 26px;
}

.t-vertex .cv-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--t-primary);
    margin-bottom: 14px;
}

.t-vertex .cv-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e2e8f0, transparent);
}

.t-vertex .cv-exp-item {
    margin-bottom: 18px;
}

.t-vertex .cv-exp-role {
    font-weight: 600;
    font-size: 12px;
    color: var(--t-primary);
}

.t-vertex .cv-exp-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
    margin-bottom: 6px;
}

.t-vertex .cv-exp-company {
    font-size: 11px;
    color: var(--t-accent);
    font-weight: 500;
}

.t-vertex .cv-exp-dates {
    font-size: 10px;
    color: var(--t-muted);
}

.t-vertex .cv-exp-bullets {
    list-style: none;
    padding: 0;
}

.t-vertex .cv-exp-bullets li {
    padding-left: 14px;
    position: relative;
    font-size: 10.5px;
    color: var(--t-muted);
    margin-bottom: 3px;
    line-height: 1.55;
}

.t-vertex .cv-exp-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: var(--t-accent);
    border-radius: 50%;
}

.t-vertex .cv-s-title {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--t-accent);
    margin-bottom: 10px;
}

.t-vertex .cv-skill-item {
    margin-bottom: 10px;
}

.t-vertex .cv-skill-name {
    font-size: 10.5px;
    color: #374151;
    margin-bottom: 4px;
}

.t-vertex .cv-skill-dots {
    display: flex;
    gap: 4px;
}

.t-vertex .cv-skill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.t-vertex .cv-skill-dot.filled {
    background: var(--t-accent);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEMPLATE 4: PINNACLE
   Executive · Single Col · Serif Elegance
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.t-pinnacle {
    --t-primary: #2c1810;
    --t-accent: #8b4513;
    --t-gold: #c8a96e;
    --t-muted: #6b5344;
    font-family: 'Cormorant Garamond', serif;
    padding: 52px 60px;
    background: #fffdf9;
}

.t-pinnacle .cv-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--t-gold);
    position: relative;
}

.t-pinnacle .cv-name {
    font-size: 36px;
    font-weight: 600;
    color: var(--t-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.1;
}

.t-pinnacle .cv-title {
    font-size: 14px;
    color: var(--t-accent);
    font-style: italic;
    margin-top: 6px;
    letter-spacing: 1px;
}

.t-pinnacle .cv-contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-top: 14px;
}

.t-pinnacle .cv-contact-item {
    font-size: 10.5px;
    color: var(--t-muted);
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
}

.t-pinnacle .cv-section {
    margin-bottom: 24px;
}

.t-pinnacle .cv-section-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--t-primary);
    margin-bottom: 14px;
    padding-left: 12px;
    border-left: 3px solid var(--t-gold);
}

.t-pinnacle .cv-summary {
    font-size: 12.5px;
    color: #3d2b1f;
    line-height: 1.8;
    font-style: italic;
}

.t-pinnacle .cv-exp-item {
    margin-bottom: 20px;
    padding-left: 12px;
}

.t-pinnacle .cv-exp-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}

.t-pinnacle .cv-exp-role {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--t-primary);
}

.t-pinnacle .cv-exp-dates {
    font-size: 10.5px;
    color: var(--t-muted);
    font-family: 'DM Sans', sans-serif;
}

.t-pinnacle .cv-exp-company {
    font-size: 12px;
    color: var(--t-accent);
    font-style: italic;
    margin-bottom: 6px;
}

.t-pinnacle .cv-exp-bullets {
    list-style: none;
    padding: 0;
}

.t-pinnacle .cv-exp-bullets li {
    font-size: 11px;
    color: var(--t-muted);
    line-height: 1.7;
    margin-bottom: 3px;
    padding-left: 16px;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.t-pinnacle .cv-exp-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--t-gold);
}

.t-pinnacle .cv-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.t-pinnacle .cv-skill-item {
    font-size: 11px;
    color: var(--t-muted);
    font-family: 'DM Sans', sans-serif;
    padding: 5px 10px;
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 3px;
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEMPLATE 5: NOVA
   Creative · Bold Colors · Modern Layout
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.t-nova {
    --t-primary: #0a0a0f;
    --t-accent: #00d4aa;
    --t-accent2: #7b2ff7;
    --t-muted: #666680;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 1123px;
    background: #ffffff;
}

.t-nova .cv-header {
    background: var(--t-primary);
    padding: 40px 44px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.t-nova .cv-header-content {
    flex: 1;
}

.t-nova .cv-photo {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--t-accent);
}

.t-nova .cv-photo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid var(--t-accent);
    flex-shrink: 0;
}

.t-nova .cv-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.t-nova .cv-title {
    font-size: 12px;
    color: var(--t-accent);
    margin-top: 4px;
    font-weight: 500;
}

.t-nova .cv-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 12px;
}

.t-nova .cv-contact-item {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 4px;
}

.t-nova .cv-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 200px;
}

.t-nova .cv-main {
    padding: 32px 36px;
    border-right: 1px solid #f0f0f5;
}

.t-nova .cv-sidebar {
    padding: 32px 20px;
    background: #f9f9fc;
}

.t-nova .cv-section {
    margin-bottom: 24px;
}

.t-nova .cv-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--t-accent2);
    padding-bottom: 6px;
    border-bottom: 2px solid var(--t-accent2);
    margin-bottom: 14px;
    display: inline-block;
}

.t-nova .cv-exp-item {
    margin-bottom: 18px;
}

.t-nova .cv-exp-role {
    font-size: 12px;
    font-weight: 600;
}

.t-nova .cv-exp-company {
    font-size: 11px;
    color: var(--t-accent);
    font-weight: 500;
    margin-top: 2px;
}

.t-nova .cv-exp-dates {
    font-size: 10px;
    color: var(--t-muted);
}

.t-nova .cv-exp-bullets {
    list-style: none;
    padding: 0;
    margin-top: 6px;
}

.t-nova .cv-exp-bullets li {
    font-size: 10.5px;
    color: var(--t-muted);
    line-height: 1.55;
    margin-bottom: 3px;
    padding-left: 14px;
    position: relative;
}

.t-nova .cv-exp-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 2px;
    background: var(--t-accent);
}

.t-nova .cv-s-title {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--t-accent2);
    font-weight: 700;
    margin-bottom: 10px;
}

.t-nova .cv-skill-tag {
    display: inline-block;
    padding: 3px 9px;
    background: rgba(123, 47, 247, 0.08);
    border: 1px solid rgba(123, 47, 247, 0.2);
    border-radius: 20px;
    font-size: 10px;
    color: var(--t-accent2);
    margin: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEMPLATE 6: SLATE
   Minimal · Geometric · Swiss Design
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.t-slate {
    --t-primary: #1c1c1c;
    --t-accent: #fbbf24;
    --t-muted: #888;
    --t-light: #f5f5f5;
    font-family: 'DM Sans', sans-serif;
    padding: 0;
    display: grid;
    grid-template-rows: auto 1fr;
}

.t-slate .cv-header {
    padding: 36px 48px;
    border-bottom: 4px solid var(--t-accent);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
}

.t-slate .cv-name {
    font-size: 34px;
    font-weight: 700;
    color: var(--t-primary);
    letter-spacing: -1px;
    line-height: 1;
}

.t-slate .cv-title {
    font-size: 13px;
    color: var(--t-accent);
    font-weight: 500;
    margin-top: 8px;
}

.t-slate .cv-contact-block {
    text-align: right;
}

.t-slate .cv-contact-item {
    display: block;
    font-size: 10.5px;
    color: var(--t-muted);
    margin-bottom: 4px;
    line-height: 1.5;
}

.t-slate .cv-body {
    display: grid;
    grid-template-columns: 1fr 200px;
}

.t-slate .cv-main {
    padding: 32px 48px;
}

.t-slate .cv-sidebar {
    padding: 32px 24px;
    background: var(--t-light);
    border-left: 1px solid #e8e8e8;
}

.t-slate .cv-section {
    margin-bottom: 28px;
}

.t-slate .cv-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--t-accent);
    margin-bottom: 14px;
}

.t-slate .cv-summary {
    font-size: 11px;
    line-height: 1.7;
    color: #444;
}

.t-slate .cv-exp-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.t-slate .cv-exp-dates {
    font-size: 9.5px;
    color: var(--t-muted);
    padding-top: 2px;
    line-height: 1.4;
}

.t-slate .cv-exp-role {
    font-size: 12px;
    font-weight: 600;
}

.t-slate .cv-exp-company {
    font-size: 11px;
    color: var(--t-accent);
    margin-top: 2px;
    font-weight: 500;
}

.t-slate .cv-exp-bullets {
    list-style: none;
    padding: 0;
    margin-top: 5px;
}

.t-slate .cv-exp-bullets li {
    font-size: 10.5px;
    color: var(--t-muted);
    line-height: 1.5;
    margin-bottom: 2px;
}

.t-slate .cv-s-title {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--t-primary);
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 18px;
}

.t-slate .cv-s-title:first-child {
    margin-top: 0;
}

.t-slate .cv-skill-item {
    font-size: 10.5px;
    color: #444;
    padding: 4px 0;
    border-bottom: 1px solid #e8e8e8;
}

.t-slate .cv-lang-item {
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
    color: #444;
    padding: 4px 0;
    border-bottom: 1px solid #e8e8e8;
}

/* ─── Common Section Components ─── */
.cv-section-divider {
    height: 1px;
    background: currentColor;
    opacity: 0.1;
    margin: 4px 0;
}

.cv-cert-item {
    margin-bottom: 10px;
}

.cv-cert-name {
    font-weight: 600;
    font-size: 11px;
}

.cv-cert-issuer {
    font-size: 10px;
    opacity: 0.7;
}

.cv-project-item {
    margin-bottom: 14px;
}

.cv-project-name {
    font-weight: 600;
    font-size: 11.5px;
}

.cv-project-desc {
    font-size: 10.5px;
    opacity: 0.75;
    line-height: 1.55;
    margin-top: 3px;
}