/* =========================================
   TEIL 1: LEBENSLAUF
   ========================================= */

.lebenslauf {
    padding-top: 1rem;
}
/* Name */
.lebenslauf h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 1.25rem;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 0.6rem;
}
/* Intro: zwei Spalten (Kontakt links, Bild rechts) */
.lebenslauf .cv-intro {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}
.lebenslauf .cv-contact {
    flex: 1;
}
/* Kontaktdaten – einheitliche Zeilenabstände */
.lebenslauf .cv-contact p {
    font-size: 13px;
    line-height: 1.9;
    margin: 0;
    color: #444;
}
.lebenslauf .cv-contact strong {
    color: #1a1a1a;
    font-weight: 600;
}
/* Profilbild rechts oben – Seitenverhältnis bleibt erhalten */
.lebenslauf .cv-photo {
    flex: 0 0 150px;
}
.lebenslauf .cv-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
/* Abschnitt-Überschriften */
.lebenslauf h3 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 1.75rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #d0d0cb;
}
.lebenslauf ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Sprachen & Fähigkeiten als Pills */
.lebenslauf h3:is(:nth-of-type(1), :nth-of-type(2)) + ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lebenslauf h3:is(:nth-of-type(1), :nth-of-type(2)) + ul li {
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 20px;
    background: #f2f2ef;
    border: 1px solid #e0e0db;
    color: #333;
}
.lebenslauf h3:is(:nth-of-type(1), :nth-of-type(2)) + ul li::before {
    content: none;
}
/* Stationen (Ausbildung/Erfahrung) */
.lebenslauf h3 ~ ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.lebenslauf h3 ~ ul li:last-child {
    border-bottom: none;
}
.lebenslauf h3 ~ ul li strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* =========================================
   TEIL 2: ACHIEVEMENTS
   ========================================= */

.achievements {
    padding-top: 1.5rem;
}
/* Level Hero Card */
.achievements .level-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #1a3a6b;
    border-radius: 12px;
    color: #fff;
}
.achievements .level-badge {
    font-size: 28px;
    font-weight: 700;
}
.achievements .level-caption {
    font-size: 13px;
    color: #cdd7e6;
    margin: 0;
}
/* Abschnitt-Überschriften, angelehnt an lebenslauf */
.achievements h3 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 1.75rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #d0d0cb;
}
/* Fortschritts-Karten */
.achievements .progress-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.achievements .progress-card {
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0db;
    border-radius: 10px;
    background: #fafaf8;
}
.achievements .progress-card-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 0.5rem;
}
.achievements .progress-name {
    font-weight: 600;
    color: #1a1a1a;
}
.achievements .progress-value {
    color: #666;
}
.achievements .progress-track {
    position: relative;
    height: 18px;
    border-radius: 9px;
    background: #ececec;
    overflow: hidden;
}
.achievements .progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1a3a6b, #3a6bb0);
    border-radius: 9px 0 0 9px;
    transition: width 0.6s ease;
}
.achievements .progress-percent {
    position: absolute;
    top: 0;
    right: 8px;
    line-height: 18px;
    font-size: 11px;
    font-weight: 600;
    color: #1a1a1a;
}
/* Aktivitäten-Liste */
.achievements .activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.achievements .activity-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
    color: #333;
}
.achievements .activity-list li:last-child {
    border-bottom: none;
}
.achievements {
    padding-bottom: 2rem;
}
