/*=========================
Jobmodul aus News – clean
=========================*/

/* Bild */
.news-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Teaser: Text oben ausgerichtet */
.news-teaser {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}

/* CTA-Button */
.layout_latest_cts .more a.cta-job {
    display: inline-block;
    padding: 10px 18px;
    background-color: #067cba; /* CI-Farbe */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.layout_latest_cts .more a.cta-job:hover {
    background-color: #056aa0; /* dunkler beim Hover */
}

/* Anhänge / Downloads */
.enclosure {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.enclosure li {
    margin-bottom: 8px;
}

.enclosure li a {
    text-decoration: none;
    color: #067cba;
}

.enclosure li a:hover {
    text-decoration: underline;
}

/* Back-Link */
.back-link {
    margin-top: 30px;
}

.back-link a {
    color: #067cba;
    text-decoration: none;
    font-weight: 500;
}

.back-link a:hover {
    text-decoration: underline;
}