.ta-cv {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.ta-cv__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ta-cv__name h1 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.ta-cv__title {
    margin: 0.25rem 0 0;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
}

/* Sections */
.ta-cv__section {
    margin-bottom: 2rem;
}

.ta-cv__section > label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.ta-cv__section-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin: -0.25rem 0 0.75rem;
}

.ta-cv__section > p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Skills grid */
.ta-cv__skills-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ta-cv__skill-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.ta-cv__skill-label {
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
}

.ta-cv__skill-value {
    color: var(--text-secondary);
}

/* Jobs */
.ta-cv__job {
    margin-bottom: 1.5rem;
}

.ta-cv__job-header {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.ta-cv__job-header h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.ta-cv__job-company {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ta-cv__job ul,
.ta-cv__competencies {
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ta-cv__job li,
.ta-cv__competencies li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Projects */
.ta-cv__project {
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.ta-cv__project h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.ta-cv__project h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.ta-cv__project h3 a:hover {
    color: var(--accent);
}

.ta-cv__project p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.ta-cv__header {
    text-align: center;
    margin-bottom: 2rem;
}

.ta-cv__header .ta-cv__photo {
    clear: both;
}

.ta-cv__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    flex-shrink: 0;
}

.ta-cv__contacts a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

/* Desktop */
@media (min-width: 769px) {
    .ta-cv {
        padding: 3rem 0;
    }

    .ta-cv__contacts a:hover {
        color: var(--accent);
    }

    .ta-cv__header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border);
    }

    .ta-cv__contacts {
        text-align: right;
    }

    .ta-cv__skill-row {
        flex-direction: row;
        gap: 1rem;
    }

    .ta-cv__skill-label {
        min-width: 120px;
    }

    .ta-cv__job-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }
}