.module_career_quote .headline {
    margin-bottom: 75px;
    font-size: 38px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing:-0.0416667em;
    text-align: center;
    background: linear-gradient(
        165deg,
        #0C0F23 0%,
        #0e54df 100%
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Fallback */
    line-height: 1.2;
    color: #243c96;
}

@media (min-width:768px) {
    .module_career_quote .headline {
        font-size:50px;
        margin-bottom: 50px;
    }
}

@media (min-width:992px) {
    .module_career_quote .headline {
        font-size: 62px;
        /*margin-bottom: 85px;*/
    }
}

@media (min-width:1440px) {
    .module_career_quote .headline {
        font-size: 64px;
    }
}

.module_career_quote {
    padding: 4rem 0;
}

/* Grid */
.module_career_quote .career_quote_grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 20;
}

/* Tablet */
@media (max-width: 991px) {
    .module_career_quote .career_quote_grid {
        grid-template-columns: repeat(2, auto);
    }
}
@media (min-width: 992px) {
    .module_career_quote .career_quote_grid {
        /* align-items: center !important; */
        justify-content: center;
        display: flex;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .module_career_quote .career_quote_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .module_career_quote .career_quote_grid {
        gap: 35px;
    }
}

/* Einzelne Karte */
.module_career_quote .container {
    padding-left: 35px;
    padding-right: 35px;
}

@media (min-width:768px) {
    .module_career_quote .container {
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media (min-width:992px) {
    .module_career_quote .container {
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (min-width:1200px) {
    .module_career_quote .container {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (min-width:1440px)  {
    .module_career_quote .container {
        width: auto;
        padding-left: 75px;
        padding-right: 75px;
    }
}

.module_career_quote .quote_element {
    background-color: #243c96; /* Micronova-Blau */
    color: #fff;
    border-radius: 10px;
    padding: 40px 20px 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* height: 100%; */
}

@media (min-width:768px) {
    .module_career_quote .quote_element {
        width: calc(100% - 0px);
        margin-right: 30px;
    }

    .module_career_quote .quote_element:last-child {
        margin-right:0px;
    }
}

@media (min-width:992px) {
    .module_career_quote .quote_element {
        /* height:fit-content; */
        padding: 40px 23px 40px 23px;
    }
}

@media (min-width:1200px) {
    .module_career_quote .quote_element {
        width: calc(100% - 20px);
        padding: 36px 18px 31px 18px;
        margin-right: 45px;
    }
}

/*@media (min-width:1440px) {
    .module_career_quote .quote_element {
        margin-right: 45px;
    }
}*/

/* Bild */
.module_career_quote .quote_element .image {
    margin-bottom: 30px;
}

.module_career_quote .quote_element .image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
}

@media (min-width:1200px) {
    .module_career_quote .quote_element .image img {
        width: 100px;
        height: 100px;
    }
}

/* Zitattext */
.module_career_quote .career_tile_text p{
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing:-0.0166667em;
}

@media (min-width:992px) {
    .module_career_quote .career_tile_text p{
        margin-bottom: 40px !important;
    }
}

@media (min-width:1200px) {
    .module_career_quote .career_tile_text p{
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 35px !important;
    }
}

/* Name */
.module_career_quote .subline.name {
    margin-top: auto; /* schiebt Name/Position nach unten */
}

.module_career_quote .subline.name p{
    margin-bottom:5px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing:-0.3px;
    line-height:150%;
    margin-bottom: 6px;
}


/* Position */

.module_career_quote .position p{
    margin-bottom:0;
    font-size: 14px;
    opacity: 0.7;
    color:#fff;
    letter-spacing:-0.3px;
    line-height: 160%;
}