/* ══════════════════════════════════════════
   INCOTEC CAREERS — Initiativ-Bewerbung (2-spaltig)
   ══════════════════════════════════════════ */

.incotec-careers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.incotec-careers__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    background: #fff;
    border: 1px solid #e8eeeb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 45, 71, 0.06);
}

.incotec-careers__body {
    padding: 56px;
}
.incotec-careers__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00a99d;
    margin-bottom: 14px;
}
.incotec-careers__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #002D47;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}
.incotec-careers__lead {
    font-size: 16px;
    line-height: 1.7;
    color: #3E5B75;
    margin: 0 0 36px;
    max-width: 560px;
}

.incotec-careers__points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}
.incotec-careers__point {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
}
.incotec-careers__point-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a99d;
    background: rgba(122, 211, 193, 0.5);
    border-radius: 8px;
    flex-shrink: 0;
}
.incotec-careers__point-icon svg,
.incotec-careers__point-icon i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    line-height: 1;
}
.incotec-careers__point-title {
    font-size: 15px;
    font-weight: 700;
    color: #002D47;
    margin-bottom: 4px;
}
.incotec-careers__point-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: #3E5B75;
}

.incotec-careers__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #002D47;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 45, 71, 0.3);
}
.incotec-careers__button:hover,
.incotec-careers__button:focus,
.incotec-careers__button:active {
    background: #0F2439;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 45, 71, 0.4);
    text-decoration: none;
}

.incotec-careers__aside {
    background: linear-gradient(160deg, rgba(122, 211, 193, 0.5) 0%, #fff 100%);
    padding: 56px 44px;
    border-left: 1px solid #e8eeeb;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.incotec-careers__aside-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00a99d;
    margin-bottom: 18px;
}
.incotec-careers__aside-quote {
    font-size: 17px;
    line-height: 1.55;
    color: #002D47;
    font-weight: 500;
    margin: 0 0 28px;
    font-style: italic;
    letter-spacing: -0.005em;
}
.incotec-careers__aside-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.incotec-careers__aside-pill {
    font-size: 11.5px;
    font-weight: 600;
    color: #002D47;
    background: #fff;
    border: 1px solid #e8eeeb;
    padding: 5px 12px;
    border-radius: 100px;
}

@media (max-width: 900px) {
    .incotec-careers__inner {
        grid-template-columns: 1fr;
    }
    .incotec-careers__body {
        padding: 40px 28px;
    }
    .incotec-careers__aside {
        padding: 40px 28px;
        border-left: 0;
        border-top: 1px solid #e8eeeb;
    }
}
