/* Abschnitt */
.job-section {
    border-top: 5px solid #399400;
    background-color: #ffffff;
    overflow: hidden;
}

/* Jede Jobkarte */
.job-card {
    border-left: 6px solid #399300;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Job-Bilder */
.job-images img {
    height: 150px;
    transition: transform 0.3s ease;
}
.job-images img:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: brightness(1.1);
}

/* Jobtitel */
.job-info h3 {
    border-bottom: 2px solid #c44928;
    display: inline-block;
    padding-bottom: 5px;
}

/* Bewerben-Button */
.btn-apply {
    background: linear-gradient(135deg, #048705, #209621);
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgb(196, 73, 40);
    transition: all 0.3s ease;
    position: relative;
}
.btn-apply:hover {
    background: linear-gradient(135deg, #048705, #209621);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(71,178,228,0.6);
}

/* Puls-Effekt */
@keyframes pulseApply {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
.btn-apply {
    animation: pulseApply 3s infinite ease-in-out;
}

/* Icons */
.job-info i {
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Jobtext schöner lesbar */
.job-text p {
    margin-bottom: 0.5rem;
    color: #343a40;
}

.job-h1{
    color: #399400;
}