.cv-spacer {
    height: 140px;
}

.cv-hero {
    padding: 4rem 0;
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
}

.cv-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--emerald-1000);
    font-weight: 700;
}

.cv-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.cv-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cv-content {
    max-width: 800px;
    margin: 0 auto 6rem;
}

.cv-section {
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--emerald-1000);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--card-border);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    align-items: flex-start;
}

.timeline-date {
    flex: 0 0 140px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: right;
    padding-top: 0.2rem;
}

.timeline-content {
    flex: 1;
    border-left: 2px solid var(--card-border);
    padding-left: 1.5rem;
    position: relative;
    min-height: 1px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cerulean-1000);
    border: 2px solid var(--bg-color);
    transform: translateY(0.85rem);
}

.job-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.company-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--cerulean-1000);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.job-desc {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.job-desc ul {
    margin-top: 0.5rem;
    margin-left: 1.2rem;
}

.job-desc li {
    margin-bottom: 0.25rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background: var(--emerald-700);
    color: var(--emerald-1000);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cv-spacer {
        height: 40px;
    }

    .timeline-item {
        flex-direction: column;
        margin-bottom: 1rem;

    }

    .timeline-date {
        flex: 0 0 1rem;
    }

    .cv-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}