/* =========================================================
   Recruiting – Integrated Design (FINAL)
   Passt sich 1:1 an bestehendes DiNC-POSiTiVE Design an
========================================================= */

.recruiting-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */
.recruiting-header {
    text-align: center;
    margin-bottom: 5rem;
}

.recruiting-h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.recruiting-intro {
    font-size: 1.15rem;
    color: #333;
    max-width: 820px;
    margin: 0 auto 0.8rem;
}

.recruiting-subline {
    font-size: 0.95rem;
    color: #777;
}

/* ---------------------------------------------------------
   Sections
--------------------------------------------------------- */
.recruiting-section {
    margin-bottom: 5rem;
}

.recruiting-h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.recruiting-h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
}

/* ---------------------------------------------------------
   Card Grid – identisch zu „Unsere vier Säulen“
--------------------------------------------------------- */
.recruiting-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ---------------------------------------------------------
   Cards
--------------------------------------------------------- */
.recruiting-item {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border-radius: 14px;
    padding: 2rem 2rem 2.2rem;
    box-shadow: 0 12px 30px rgba(0, 40, 80, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

.recruiting-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,180,216,0.08), transparent 60%);
    opacity: 0;
    transition: opacity .25s ease;
}

.recruiting-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 40, 80, 0.15);
}

.recruiting-item:hover::before {
    opacity: 1;
}

.recruiting-h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.recruiting-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #444;
}

/* ---------------------------------------------------------
   CTA – identisch zum restlichen Seitenstil
--------------------------------------------------------- */
.recruiting-cta {
    margin-top: 6rem;
    padding: 3.5rem 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b3c5d, #082c45);
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.recruiting-cta-h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.recruiting-cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.recruiting-cta-btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, #00b4d8, #0096c7);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 18px rgba(0,180,216,0.4);
}

.recruiting-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,180,216,0.6);
}
