/* „Osa" — moderní: časová osa s tečkami na svislé lince */

.cv--osa {
    font-family: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.55;
    padding: 44px 52px;
    color: #222222;
}

.cv--osa .cv-head {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: 'photo id' 'photo contacts';
    column-gap: 22px;
    align-items: center;
    margin-bottom: 26px;
}
.cv--osa .cv-photo { grid-area: photo; width: 92px; height: 92px; border-radius: 50%; overflow: hidden; border: 3px solid var(--cva); }
.cv--osa .cv-photo img { width: 100%; height: 100%; object-fit: cover; }
.cv--osa .cv-id { grid-area: id; align-self: end; }
.cv--osa .cv-name { font-size: 30px; font-weight: 800; color: #191919; }
.cv--osa .cv-title { margin-top: 3px; font-size: 13px; font-weight: 700; color: var(--cva); text-transform: uppercase; letter-spacing: 0.1em; }
.cv--osa .cv-contacts { grid-area: contacts; display: flex; flex-wrap: wrap; gap: 3px 16px; margin-top: 8px; font-size: 11.5px; color: #555555; align-self: start; }

.cv--osa .cv-sec { margin-bottom: 20px; }
.cv--osa .cv-h2 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cva);
    margin-bottom: 12px;
}

/* časová osa: položky s levou linkou a tečkou */
.cv--osa .cv-sec--experience .cv-item,
.cv--osa .cv-sec--education .cv-item {
    position: relative;
    padding-left: 24px;
    padding-bottom: 14px;
    margin-bottom: 0;
    border-left: 2px solid var(--cva-soft);
    margin-left: 5px;
}
.cv--osa .cv-sec--experience .cv-item:last-child,
.cv--osa .cv-sec--education .cv-item:last-child { border-left-color: transparent; padding-bottom: 4px; }
.cv--osa .cv-sec--experience .cv-item::before,
.cv--osa .cv-sec--education .cv-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--cva);
}

.cv--osa .cv-item-head { display: flex; justify-content: space-between; gap: 12px; }
.cv--osa .cv-item-title { font-size: 14px; font-weight: 700; }
.cv--osa .cv-item-dates { font-size: 11.5px; font-weight: 700; color: var(--cva); white-space: nowrap; }
.cv--osa .cv-item-sub { font-size: 12.5px; color: #666666; }
.cv--osa .cv-item-desc { font-size: 12.5px; margin-top: 3px; }

.cv--osa .cv-dots { color: var(--cva); }
.cv--osa .cv-skills { display: flex; flex-wrap: wrap; gap: 7px 0; }
.cv--osa .cv-skill { width: 50%; display: flex; justify-content: space-between; padding-right: 28px; font-size: 12.5px; }
.cv--osa .cv-langs { display: flex; flex-wrap: wrap; gap: 7px 0; }
.cv--osa .cv-langs li { width: 50%; display: flex; justify-content: space-between; padding-right: 28px; font-size: 12.5px; }
.cv--osa .cv-lang-level { color: #666666; }
.cv--osa .cv-list li { font-size: 12.5px; margin-bottom: 4px; padding-left: 14px; position: relative; }
.cv--osa .cv-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--cva); }
