/* Layout 1: Modern Green (Top Header Banner) */
.layout-modern-green .cv-header {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08) 0%, rgba(46, 125, 50, 0.08) 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 6px solid #00C853;
    margin-bottom: 25px;
}
.layout-modern-green .cv-section-title {
    color: #2E7D32;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #00C853;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Layout 2: Executive Left Sidebar (2-Column Grid) */
.layout-executive-sidebar {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    background: #fff;
}
.layout-executive-sidebar .sidebar-col {
    background: #F8FAF9;
    padding: 25px;
    border-radius: 12px;
    border-right: 1px solid #E2E8F0;
}
.layout-executive-sidebar .main-col {
    padding: 10px;
}

/* Layout 3: Clean Timeline (ATS Classic Minimal) */
.layout-classic-timeline .timeline-item {
    position: relative;
    padding-left: 25px;
    border-left: 2px solid #00C853;
    margin-bottom: 20px;
}
.layout-classic-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00C853;
    border: 2px solid #fff;
}

/* Layout 4: Creative Minimalist (Rounded Badges & Dividers) */
.layout-creative .cv-header {
    text-align: center;
    border-bottom: 1px dashed #00C853;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.layout-creative .skill-badge {
    background: #00C853;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin: 3px;
}