/* „Štítek" — kreativní: dovednosti jako štítky, barevné bloky sekcí */

.cv--stitek {
    font-family: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.55;
    display: flex;
    flex-direction: column;
}

.cv--stitek .cv-head {
    padding: 36px 46px 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: 'photo id' 'photo contacts';
    column-gap: 24px;
    align-items: center;
}
.cv--stitek .cv-photo { grid-area: photo; width: 96px; height: 96px; border-radius: 14px; overflow: hidden; box-shadow: 0 0 0 3px var(--cva); }
.cv--stitek .cv-photo img { width: 100%; height: 100%; object-fit: cover; }
.cv--stitek .cv-id { grid-area: id; align-self: end; }
.cv--stitek .cv-name { font-size: 30px; font-weight: 800; color: #1d1d1d; }
.cv--stitek .cv-title {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    background: var(--cva);
    border-radius: 4px;
    padding: 0 12px;
    line-height: 22px;
    height: 22px;
}
.cv--stitek .cv-contacts { grid-area: contacts; display: flex; flex-wrap: wrap; gap: 4px 16px; margin-top: 8px; font-size: 11.5px; color: #555555; align-self: start; }

.cv--stitek .cv-body { display: grid; grid-template-columns: 1fr 225px; flex: 1; }
.cv--stitek .cv-main { order: 1; padding: 20px 28px 30px 46px; }
.cv--stitek .cv-side { order: 2; padding: 20px 46px 30px 24px; }

.cv--stitek .cv-sec { margin-bottom: 20px; }
.cv--stitek .cv-h2 {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cva);
    background: var(--cva-soft);
    border-radius: 4px;
    padding: 0 10px;
    line-height: 21px;
    height: 21px;
    margin-bottom: 10px;
}

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

/* dovednosti jako štítky */
.cv--stitek .cv-dots { display: none; }
.cv--stitek .cv-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.cv--stitek .cv-skill {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--cva);
    border: 1.5px solid var(--cva);
    border-radius: 20px;
    padding: 3px 11px;
}
.cv--stitek .cv-langs li { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; margin-bottom: 6px; }
.cv--stitek .cv-lang-level { font-size: 10.5px; color: #777777; white-space: nowrap; }
.cv--stitek .cv-list li { font-size: 12px; margin-bottom: 4px; padding-left: 14px; position: relative; }
.cv--stitek .cv-list li::before { content: ''; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 2px; background: var(--cva); }
.cv--stitek .cv-gdpr { padding: 0 46px 20px; }
