/* Bestehendes CSS */
.jobs-category-wrapper { padding-bottom: 40px; width: 100%; }
.jobs-wrapper .job-item-clickable { cursor: pointer; }
.jobs-wrapper .jobs-link-wrapper { display: flex !important; align-items: center !important; justify-content: space-between !important; background-color: #fff; box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .08) !important; min-height: 84px; padding-left: 28px; margin-bottom: 16px; }

/* Textfarbe für Barrierefreiheit */
.jobs-wrapper h4.jobs-subtitle { font-size: 24px; font-weight: 700; margin-bottom: 26px; color: #191414; font-family: "Ubuntu", sans-serif; }
.jobs-wrapper .jobs-title { font-size: 18px; font-weight: 500; margin-bottom: 4px; letter-spacing: .36px; color: #191414; }

.jobs-wrapper .jobs-description { color: #191414; font-size: 16px; font-weight: 400; letter-spacing: 0; position: relative; }
.jobs-wrapper .jobs-link { color: #4b545b; font-size: 24px; font-weight: 400; padding: 22px; }

/* GEÄNDERTES CSS FÜR BUTTON UND NEUES FÜR POPUP */
.jobs-show-more-wrapper { text-align: left; margin-top: 20px; }
#jobs-show-more-btn { 
    cursor: pointer; 
    color: #191414; /* GEÄNDERT: von #ffffff auf einen dunklen Farbton */
    background-color: #F7931E; 
    font-size: 18px; 
    font-weight: 600; 
    display: inline-block; 
    border-radius: 1000px; 
    padding: 12px 36px; 
    height: 52px; 
    border: 0; 
    outline: none; 
}
#jobs-show-more-btn:hover { opacity: 0.8; }
#apply-popup-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; display: none; }
.popup-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); cursor: pointer; }
.popup-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; max-width: 800px; height: 85vh; background: #fff; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); box-sizing: border-box; }
.popup-close-btn { position: absolute; top: -15px; right: -15px; background: #fff; color: #333; border: 1px solid #ccc; border-radius: 50%; width: 40px; height: 40px; font-size: 24px; line-height: 38px; text-align: center; cursor: pointer; z-index: 10001; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.popup-iframe-container { width: 100%; height: 100%; }
.is-hidden-by-logic { display: none !important; } /* Hilfsklasse für JS */