/* ============================================================
   Šablona „Edice" — klasická v moderním podání
   Knižní serifová sazba, vycentrovaná hlavička, tenké dvojlinky.
   ============================================================ */

.cv--edice {
    --cva: #28245c;
    --cva-soft: #eceaf4;
    font-family: Georgia, 'Times New Roman', 'Iowan Old Style', serif;
    font-size: 13px;
    line-height: 1.62;
    color: #24242a;
    display: flex;
    flex-direction: column;
}

/* ---------------------------------------------- hlavička */
.cv--edice .cv-head {
    padding: 56px 68px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cv--edice .cv-photo {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid #d6d6de;
    padding: 5px;
    background: #ffffff;
}
.cv--edice .cv-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.cv--edice .cv-name {
    font-size: 36px;
    font-weight: normal;
    letter-spacing: 0.04em;
    line-height: 1.12;
    color: var(--cva);
}
.cv--edice .cv-title {
    margin-top: 10px;
    font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #6a6a76;
}

/* dvojlinka pod hlavičkou */
.cv--edice .cv-contacts {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 3px double var(--cva);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 20px;
    font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 11.5px;
    color: #55555f;
    width: 100%;
}

/* ---------------------------------------------- tělo */
.cv--edice .cv-body {
    flex: 1;
    padding: 12px 68px 32px;
}

.cv--edice .cv-sec { margin-bottom: 26px; }
.cv--edice .cv-sec:last-child { margin-bottom: 0; }

/* nadpis uprostřed mezi linkami */
.cv--edice .cv-h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--cva);
    margin-bottom: 16px;
}
.cv--edice .cv-h2::before,
.cv--edice .cv-h2::after {
    content: '';
    height: 1px;
    background: #d6d6de;
}
.cv--edice .cv-h2::before { width: 0; }
.cv--edice .cv-h2::after { flex: 1; }

/* ---------------------------------------------- položky */
.cv--edice .cv-item { margin-bottom: 17px; }
.cv--edice .cv-item:last-child { margin-bottom: 0; }

.cv--edice .cv-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
}
.cv--edice .cv-item-title { font-size: 15px; font-weight: bold; }
.cv--edice .cv-item-dates {
    font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: #6a6a76;
    white-space: nowrap;
}
.cv--edice .cv-item-sub {
    font-size: 13px;
    font-style: italic;
    color: #55555f;
    margin: 1px 0 5px;
}
.cv--edice .cv-item-desc { font-size: 12.5px; }
.cv--edice .cv-summary {
    font-size: 13.5px;
    font-style: italic;
    text-align: center;
    padding: 0 26px;
    color: #3a3a44;
}

/* ---------------------------------------------- dovednosti */
.cv--edice .cv-skills,
.cv--edice .cv-langs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 36px;
}
.cv--edice .cv-skill,
.cv--edice .cv-langs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
}
.cv--edice .cv-dots { color: var(--cva); }
.cv--edice .cv-dot { width: 7px; height: 7px; }
.cv--edice .cv-lang-level {
    font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 10.5px;
    color: #6a6a76;
    white-space: nowrap;
}

.cv--edice .cv-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 36px;
}
.cv--edice .cv-list li {
    font-size: 12.5px;
    padding-left: 14px;
    position: relative;
}
.cv--edice .cv-list li::before {
    content: '·';
    position: absolute;
    left: 2px;
    top: -1px;
    font-size: 18px;
    color: var(--cva);
}

.cv--edice .cv-gdpr { padding: 0 68px 26px; text-align: center; }
