.hegau24-jobs {
width: min(1800px, 94%);
margin: 32px auto;
box-sizing: border-box;
}

.hegau24-jobs__layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 420px;
gap: 32px;
align-items: start;
}

.hegau24-jobs__main {
min-width: 0;
}

.hegau24-jobs__sidebar {
min-width: 0;
}

.hegau24-jobs__ad-placeholder {
min-height: 250px;
padding: 24px;
border: 1px dashed #cbd5df;
border-radius: 16px;
background: rgba(255, 255, 255, 0.55);
color: #7a8795;
font-size: 14px;
text-align: center;
box-sizing: border-box;
}

/* ------------------------------------------------------------------
 * Hegau24 Job Card
 * ------------------------------------------------------------------ */

/* ------------------------------------------------------------------
 * Hegau24 Job Card
 * ------------------------------------------------------------------ */

.hegau24-job-card {
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(15, 45, 78, 0.08);
    box-sizing: border-box;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}

.hegau24-job-card:hover {
    border-color: #d7e3ef;
    box-shadow: 0 7px 22px rgba(15, 45, 78, 0.10);
}

/* Title */

.hegau24-job-card__title {
    margin: 0 0 7px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.hegau24-job-card__title a {
    color: #2474e8;
    text-decoration: none;
    transition: color 0.15s ease;
}

.hegau24-job-card__title a:hover {
    color: #1d66d0;
    text-decoration: underline;
}

/* Company */

.hegau24-job-card__company {
    margin: 0 0 15px;
    color: #526273;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

/* Meta / badges */

.hegau24-job-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 17px;
}

.hegau24-job-card__city,
.hegau24-job-card__type,
.hegau24-job-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 11px;
    border-radius: 8px;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;

    box-sizing: border-box;
}

/* Location */

.hegau24-job-card__city {
    background: #eef5ff;
    color: #17395f;
}

/* Job type */

.hegau24-job-card__type {
    background: #f1f7f3;
    color: #28623b;
}

/* Employment */

.hegau24-job-card__badge--employment {
    background: #eaf7ee;
    color: #23663a;
}

/* Work mode */

.hegau24-job-card__badge--work-mode {
    background: #fff5e8;
    color: #8a5815;
}

/* Experience */

.hegau24-job-card__badge--experience {
    background: #f2edff;
    color: #6545a3;
}

/* Education */

.hegau24-job-card__badge--education {
    background: #eef2f6;
    color: #45586d;
}

/* Languages */

.hegau24-job-card__badge--language {
    background: #edf7f8;
    color: #28636a;
}

/* Remote */

.hegau24-job-card__badge--remote {
    background: #eaf4ff;
    color: #2864a0;
}

/* No experience */

.hegau24-job-card__badge--no-experience {
    background: #eaf7ee;
    color: #23663a;
}

/* Disability */

.hegau24-job-card__badge--disability {
    background: #fff0f0;
    color: #a13d3d;
}

/* Description */

.hegau24-job-card__excerpt {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4f6072;
}

/* Mobile */

@media (max-width: 767px) {

    .hegau24-job-card {
        padding: 20px;
        border-radius: 12px;
    }

    .hegau24-job-card__title {
        font-size: 21px;
    }

    .hegau24-job-card__company {
        margin-bottom: 13px;
        font-size: 15px;
    }

    .hegau24-job-card__meta {
        gap: 7px;
        margin-bottom: 15px;
    }

    .hegau24-job-card__city,
    .hegau24-job-card__type,
    .hegau24-job-card__badge {
        font-size: 13px;
        min-height: 30px;
        padding: 5px 9px;
    }

    .hegau24-job-card__excerpt {
        font-size: 15px;
        line-height: 1.55;
    }
}

/* ------------------------------------------------------------------
 * Hegau24 Jobs — External Page Layout Compatibility
 *
 * The current Jobs page template still uses the established
 * .hegau-jobs-page structure.
 *
 * This layout is intentionally kept compatible with page.php while
 * Jobs UI styling is being migrated into Hegau24 Core.
 * ------------------------------------------------------------------ */

.hegau-jobs-page {
    width: min(1800px, 94%);
    margin: 32px auto 70px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: start;
}

.hegau-jobs-page__main {
    min-width: 0;
}

.hegau-jobs-page__sidebar {
    width: 300px;
    min-width: 0;
}

@media (max-width: 900px) {

    .hegau-jobs-page {
        grid-template-columns: minmax(0, 1fr);
    }

    .hegau-jobs-page__sidebar {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .hegau-jobs-page {
        width: calc(100% - 24px);
        margin: 20px auto 50px;
    }
}

/* =========================================================
 * Hegau24 Job Card — Final Visual Layer
 * 2026-09-02
 * ========================================================= */

.hegau24-job-card {
    position: relative;
    width: 100%;
    margin: 0 0 20px;
    padding: 24px 26px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e4ebf3;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(31, 55, 82, 0.06);
    color: #304861;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hegau24-job-card:hover {
    box-shadow: 0 8px 26px rgba(31, 55, 82, 0.10);
    transform: translateY(-1px);
}

/* ---------- Top ---------- */

.hegau24-job-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 28px;
    margin-bottom: 16px;
}

.hegau24-job-card__new {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eaf8ef;
    color: #24924d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.hegau24-job-card__favorite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #dce5ef;
    border-radius: 50%;
    background: #ffffff;
    color: #71849a;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.hegau24-job-card__favorite:hover {
    border-color: #b9cbe0;
    color: #246fe5;
    background: #f5f9ff;
}

/* ---------- Header ---------- */

.hegau24-job-card__header {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.hegau24-job-card__company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    box-sizing: border-box;
    border: 1px solid #e0e8f1;
    border-radius: 14px;
    background: #f5f8fc;
    color: #246fe5;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.hegau24-job-card__main {
    min-width: 0;
}

.hegau24-job-card__title {
    margin: 0 0 7px;
    font-size: 21px;
    font-weight: 750;
    line-height: 1.3;
}

.hegau24-job-card__title a {
    color: #1769e0;
    text-decoration: none;
}

.hegau24-job-card__title a:hover {
    text-decoration: underline;
}

.hegau24-job-card__location {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    color: #60758d;
    font-size: 14px;
    line-height: 1.45;
}

.hegau24-job-card__location-icon {
    color: #1769e0;
    font-size: 11px;
}

.hegau24-job-card__company {
    color: #263f59;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

/* ---------- Salary ---------- */

.hegau24-job-card__salary {
    min-width: 145px;
    padding-left: 20px;
    text-align: right;
}

.hegau24-job-card__salary-amount {
    display: block;
    color: #1d3650;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.3;
    white-space: nowrap;
}

.hegau24-job-card__salary-period {
    display: block;
    margin-top: 4px;
    color: #73869a;
    font-size: 13px;
    line-height: 1.4;
}

/* ---------- Highlights ---------- */

.hegau24-job-card__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 16px;
    padding-top: 16px;
    border-top: 1px solid #edf1f5;
}

.hegau24-job-card__highlight {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    box-sizing: border-box;
    border: 1px solid #e0e8f1;
    border-radius: 8px;
    background: #f7f9fc;
    color: #435c75;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
}

.hegau24-job-card__highlight--contract {
    background: #f3f8ff;
    border-color: #d8e7fb;
    color: #2468b5;
}

/* ---------- Body ---------- */

.hegau24-job-card__body {
    min-width: 0;
}

.hegau24-job-card__description {
    margin: 0 0 15px;
    color: #526b84;
    font-size: 14px;
    line-height: 1.65;
}

/* ---------- Skills / tags ---------- */

.hegau24-job-card__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 18px;
}

.hegau24-job-card__skill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    box-sizing: border-box;
    border: 1px solid #dce7f3;
    border-radius: 999px;
    background: #f5f8fc;
    color: #506981;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.hegau24-job-card__skill--job-type {
    background: #eef5ff;
    border-color: #d4e5fc;
    color: #2168c6;
}

/* ---------- Footer ---------- */


.hegau24-job-card__special {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-width: 0;
}

.hegau24-job-card__special-item {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 7px;
    background: #f3faf5;
    color: #2d8950;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.hegau24-job-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.hegau24-job-card__actions a,
.hegau24-job-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    box-sizing: border-box;
    border: 1px solid #d7e2ee;
    border-radius: 8px;
    background: #ffffff;
    color: #246fe5;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.2;
    text-decoration: none;
}

.hegau24-job-card__actions a:hover,
.hegau24-job-card__action:hover {
    background: #f3f7fd;
    border-color: #bfd2e7;
}

.hegau24-job-card__actions a:last-child,
.hegau24-job-card__action--primary {
    border-color: #246fe5;
    background: #246fe5;
    color: #ffffff;
}

.hegau24-job-card__actions a:last-child:hover,
.hegau24-job-card__action--primary:hover {
    background: #185fc9;
    border-color: #185fc9;
    color: #ffffff;
}

/* ---------- Published ---------- */


.hegau24-job-card__published strong {
    color: #64798e;
    font-weight: 650;
}

/* ---------- Responsive ---------- */

@media (max-width: 800px) {

    .hegau24-job-card {
        padding: 20px;
        border-radius: 15px;
    }

    .hegau24-job-card__header {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
    }

    .hegau24-job-card__company-logo {
        width: 52px;
        height: 52px;
        border-radius: 11px;
        font-size: 20px;
    }

    .hegau24-job-card__salary {
        grid-column: 2;
        padding: 0;
        text-align: left;
    }

    .hegau24-job-card__salary-amount {
        white-space: normal;
    }

    
    
    }

@media (max-width: 520px) {

    .hegau24-job-card {
        padding: 17px;
        margin-bottom: 14px;
    }

    .hegau24-job-card__title {
        font-size: 18px;
    }

    .hegau24-job-card__highlights {
        gap: 6px;
        margin-top: 16px;
        padding-top: 14px;
    }

    .hegau24-job-card__highlight {
        font-size: 12px;
    }

    .hegau24-job-card__skills {
        gap: 6px;
    }

    .hegau24-job-card__skill {
        font-size: 11px;
    }
}

/* =========================================================
 * Job Card — Skills as inline professional tags
 * 2026-09-02
 * ========================================================= */

.hegau24-job-card__skills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 2px 0 18px;
    padding: 0;
}

.hegau24-job-card__skill {
    display: inline;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #304861;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

/* Separator between items */
.hegau24-job-card__skill + .hegau24-job-card__skill::before {
    content: "•";
    display: inline-block;
    margin: 0 11px;
    color: #2475e8;
    font-weight: 700;
}

/* Job type remains slightly emphasized */
.hegau24-job-card__skill--job-type {
    color: #2168c6;
    font-weight: 650;
}

/* Mobile */
@media (max-width: 520px) {

    .hegau24-job-card__skills {
        margin-bottom: 16px;
    }

    .hegau24-job-card__skill {
        font-size: 13px;
        line-height: 1.65;
    }

    .hegau24-job-card__skill + .hegau24-job-card__skill::before {
        margin: 0 8px;
    }
}

/* =========================================================
 * Job Card — Different highlight colors
 * 2026-09-02
 * ========================================================= */

/* 1. Employment — blue */
.hegau24-job-card__highlight--employment {
    background: #eef5ff;
    border-color: #d5e5fb;
    color: #1769d2;
}

/* 2. Work mode — green */
.hegau24-job-card__highlight--work-mode {
    background: #edf9f1;
    border-color: #d5eedc;
    color: #218a48;
}

/* 3. Experience — orange */
.hegau24-job-card__highlight--experience {
    background: #fff6e8;
    border-color: #f5e2bd;
    color: #d88916;
}

/* 4. Education — purple */
.hegau24-job-card__highlight--education {
    background: #f5efff;
    border-color: #e5d8f8;
    color: #7040b8;
}

/* 5. Contract — blue */
.hegau24-job-card__highlight--contract {
    background: #eef5ff;
    border-color: #d5e5fb;
    color: #2468c6;
}

/* Job Card — Salary amount */
.hegau24-job-card__salary-amount {
    color: #16a34a;
}

/* =========================================================
 * Job Card — SVG icons
 * 2026-09-02
 * ========================================================= */

.hegau24-job-card__location-icon,
.hegau24-job-card__company-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hegau24-job-card__location-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #2475e8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hegau24-job-card__company-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #304861;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hegau24-job-card__company {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Highlight icons */
.hegau24-job-card__highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hegau24-job-card__highlight svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Slightly larger icons on desktop */
@media (min-width: 768px) {
    .hegau24-job-card__highlight svg {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }
}


/* =========================================================
 * Job Card — final publication / actions layout
 * 2026-09-02
 * ========================================================= */

.hegau24-job-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 28px;
    margin-top: 22px;
    padding-top: 0;
    position: relative;
}

/* Left: special conditions — lower row */
.hegau24-job-card__special {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    padding-top: 18px;
    border-top: 1px solid #e4e9ef;
}

/* Right publication block — upper row */
.hegau24-job-card__footer-right {
    display: contents;
}

.hegau24-job-card__published {
    grid-column: 2;
    grid-row: 1;
    min-width: 170px;
    padding: 18px 0 18px 28px;
    border-left: 1px solid #e4e9ef;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.hegau24-job-card__published span {
    display: block;
    color: #8090a3;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.hegau24-job-card__published strong {
    display: block;
    color: #1d3553;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

/* Right: actions — lower row */
.hegau24-job-card__actions {
    grid-column: 2;
    grid-row: 2;
    padding-top: 18px;
    border-top: 1px solid #e4e9ef;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
}

/* Keep the horizontal separator visually continuous */
.hegau24-job-card__special {
    border-top-color: #e4e9ef;
}

.hegau24-job-card__actions {
    border-top-color: #e4e9ef;
}

/* Mobile */
@media (max-width: 700px) {

    .hegau24-job-card__footer {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        row-gap: 0;
    }

    .hegau24-job-card__published {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        padding: 16px 0;
        border-left: 0;
        border-top: 1px solid #e4e9ef;
    }

    .hegau24-job-card__special {
        grid-column: 1;
        grid-row: 2;
        padding-top: 16px;
    }

    .hegau24-job-card__actions {
        grid-column: 1;
        grid-row: 3;
        padding-top: 16px;
        justify-content: flex-start;
    }
}


/* =========================================================
 * Hegau24 Ads — Jobs Sidebar Placeholder
 * Structural advertising slot: 300 × 600
 * 2026-09-02
 * ========================================================= */

.hegau24-ads-jobs-sidebar {
    width: 300px;
    max-width: 100%;
    box-sizing: border-box;
}

.hegau24-ads-jobs-sidebar__placeholder {
    width: 100%;
    height: 600px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: #ffffff;
    border: 1px dashed #cbd7e4;
    border-radius: 16px;

    color: #718096;
    text-align: center;

    box-shadow: 0 8px 24px rgba(30, 60, 90, 0.04);
}

.hegau24-ads-jobs-sidebar__label {
    display: block;
    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #8a9bad;
}

.hegau24-ads-jobs-sidebar__text {
    display: block;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;

    color: #50657b;
}

.hegau24-ads-jobs-sidebar__size {
    display: block;
    margin-top: 12px;

    font-size: 12px;
    line-height: 1.4;

    color: #9aa8b7;
}

@media (max-width: 900px) {

    .hegau24-ads-jobs-sidebar {
        width: 100%;
    }

    .hegau24-ads-jobs-sidebar__placeholder {
        height: 300px;
    }
}


/* =========================================================
 * Job Card — publication block inside body
 * 2026-09-02
 * ========================================================= */

.hegau24-job-card__body-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    column-gap: 28px;
    align-items: stretch;
}

.hegau24-job-card__description {
    grid-column: 1;
    grid-row: 1;
}

.hegau24-job-card__skills {
    grid-column: 1;
    grid-row: 2;
}

.hegau24-job-card__published {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 0;
    padding: 18px 0 18px 28px;
    border-left: 1px solid #e4e9ef;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.hegau24-job-card__published span {
    display: block;
    margin-bottom: 4px;
    color: #8090a3;
    font-size: 14px;
    line-height: 1.4;
}

.hegau24-job-card__published strong {
    display: block;
    color: #1d3553;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 700px) {

    .hegau24-job-card__body-layout {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .hegau24-job-card__description {
        grid-column: 1;
        grid-row: 1;
    }

    .hegau24-job-card__skills {
        grid-column: 1;
        grid-row: 2;
    }

    .hegau24-job-card__published {
        grid-column: 1;
        grid-row: 3;
        min-width: 0;
        padding: 16px 0;
        border-left: 0;
        border-top: 1px solid #e4e9ef;
    }
}


/* Job Card — larger logo square */
.hegau24-job-card__company-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    box-sizing: border-box;
}


/* Job Card — larger logo square 80x80 */
@media (min-width: 801px) {

    .hegau24-job-card__header {
        grid-template-columns: 80px minmax(0, 1fr) auto;
    }

    .hegau24-job-card__company-logo {
        width: 80px;
        height: 80px;
        flex: 0 0 80px;
    }

}


/* =========================================================
 * Hegau24 Jobs — pagination
 * 2026-09-02
 * ========================================================= */

.hegau24-jobs__pagination {
    width: 100%;
    min-height: 48px;
    margin: 28px 0 24px;
    padding: 0;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    position: relative;
    clear: both;
    float: none;
}

.hegau24-jobs__pagination-link {
    width: 40px;
    height: 40px;
    padding: 0;
    box-sizing: border-box;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: 8px;

    background: transparent;
    color: #526b84;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.hegau24-jobs__pagination-link:hover {
    background: #f3f7fc;
    color: #246fe5;
}

.hegau24-jobs__pagination-link.is-active {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.hegau24-jobs__pagination-link--prev,
.hegau24-jobs__pagination-link--next {
    font-size: 22px;
    font-weight: 400;
}

.hegau24-jobs__pagination + .hegau24-jobs__in-list-ad-slot {
    margin-top: 24px;
}


/* Hegau24 Ads — Jobs In List */
.hegau24-ads-jobs-in-list {
    width: 100%;
    margin: 28px 0;
    box-sizing: border-box;
}

.hegau24-ads-jobs-in-list__link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.hegau24-ads-jobs-in-list__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .hegau24-ads-jobs-in-list {
        margin: 20px 0;
    }

    .hegau24-ads-jobs-in-list__image {
        border-radius: 12px;
    }
}
