
/* =====================================================
   CV DISEÑO MODERNO (Sidebar)
   ===================================================== */
.cv-modern {
    display: grid;
    grid-template-columns: 240px 1fr;
    background: white;
    min-height: 297mm; /* A4 height approx */
    gap: 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.cv-modern-sidebar {
    background: #f8f9fa;
    border-right: 1px solid #eee;
    padding: 30px 20px;
}

.cv-photo-wrap-modern {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.cv-photo-wrap-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-sidebar-section {
    margin-bottom: 25px;
}
.cv-sidebar-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.cv-sidebar-item {
    font-size: 0.78rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
}
.cv-sidebar-item b {
    color: #222;
}

.cv-modern-main {
    padding: 40px;
    background: white;
}

.cv-modern-header {
    border-bottom: 3px solid #222;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.cv-modern-header .cv-name {
    margin-bottom: 5px;
    font-size: 2.2rem;
}
.cv-modern-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cv-body-modern .cv-section {
    margin-bottom: 30px;
}

/* Print specific for modern design */
@media print {
    .cv-modern {
        box-shadow: none;
        display: grid !important;
        grid-template-columns: 240px 1fr !important;
    }
    .cv-modern-sidebar {
        background: #f8f9fa !important;
        -webkit-print-color-adjust: exact;
    }
}
