.karriere {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0;
}

/* Header */
.karriere-header {
    text-align: left;
    margin-bottom: 28px;
}

/* ALLE H2 in Karriere Section - einheitlicher Stil */
.karriere .section-header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 0;
    box-sizing: border-box;
}

.karriere .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin: 0 0 18px 0;
    position: relative;
    padding-bottom: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.karriere .section-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 6px;
    background-color: #1E4D8B;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 0 24px 0;
}

/* Jobs Section */
.jobs-section {
    margin-bottom: 80px;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.job-card:hover {
    background: #fbfbfb;
    border-color: #1E4D8B;
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.job-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.job-meta-item svg {
    width: 18px;
    height: 18px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
}

.job-arrow {
    width: 40px;
    height: 40px;
    background: #e8f1fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #1E4D8B;
    stroke-width: 2;
    fill: none;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.benefits-text {
    max-width: 1100px;
    margin: 40px auto 0;
    text-align: center;
}

.benefits-text p {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.benefit-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #1E4D8B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.benefit-item p {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    padding-top: 8px;
}

/* Process Section */
.process-section {
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.process-step {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 32px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 40px;
    height: 40px;
    background: #1E4D8B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke: #1a1a1a;
    stroke-width: 1.5;
    fill: none;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.step-description {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .karriere .section-header {
        padding: 0;
        margin-bottom: 32px;
    }

    .karriere .section-header h2 {
        font-size: 2rem;
        margin-bottom: 32px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .karriere {
        padding: 0 20px;
        margin: 60px auto;
    }

    .karriere .section-header {
        padding: 0;
        margin-bottom: 28px;
    }

    .karriere .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 28px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .karriere .section-header h2::after {
        left: 20px;
        width: 70px;
        height: 5px;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .job-arrow {
        align-self: flex-end;
    }

    .benefit-item {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .karriere .section-header {
        padding: 0;
        margin-bottom: 24px;
    }

    .karriere .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 24px;
        padding-bottom: 8px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .karriere .section-header h2::after {
        left: 15px;
        width: 65px;
        height: 4px;
    }
}
