.wp-admin .job-teaser__grid a {
    pointer-events: none;
}

.job-teaser__grid {
    display: grid;
}

.job-teaser__item {
    position: relative;
    text-decoration: none;
    color: unset;
    font-weight: normal;
    --_link-icon-width: 1.5rem;
}

.job-teaser__item__link-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: var(--_link-icon-width);
}

.job-teaser__item__link-icon svg {
    width: 100%;
}

.job-teaser__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem 1rem;
    margin-bottom: 1.5rem;
}

.job-teaser {
    --form-gap: 1.5rem;
}

.job-teaser__form {
    display: grid;
    grid-template-columns: repeat(3, 230px);
    gap: var(--form-gap);
    justify-content: end;
    flex-grow: 1;
}

.job-teaser__form__input-wrapper {
    width: 100%;
}

.job-teaser__form__input-wrapper:last-child {
    border-radius: 0 4px 4px 0;
}

.job-teaser__form__input-wrapper__input {
    width: 100%;
    height: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #CFCECE;
    background: #fff;
    font-size: 1.125rem;
}

.job-teaser__form__input-wrapper__input::placeholder {
    color: #6B6B6B;
    font-size: 1.125rem;
    line-height: 1;
}

.job-teaser__form__input-wrapper--has-icon {
    position: relative;
    --_icon-width: 1.25rem;
}

.job-teaser__form__input-wrapper--has-icon .job-teaser__form__input-wrapper__input {
    padding-left: calc(var(--_icon-width) + 1.9rem);
}

.job-teaser__form__input-wrapper__icon {
    position: absolute;
    display: flex;
    height: fit-content;
    left: 1.45rem;
    top: 50%;
    transform: translateY(-60%);
    width: var(--_icon-width);
}

.job-teaser__form__input-wrapper__icon svg {
    width: 100%;
    height: auto;
}

.job-teaser__no-results {
    display: none;
    width: 100%;
    max-width: 650px;
    margin-inline: auto;
    padding: 2rem;
    border: 1px solid #EFEFEF;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
}

.job-teaser--no-results .job-teaser__no-results {
    display: flex;
}

.job-teaser__item {
    display: grid;
    grid-template-columns: 1fr repeat(3, 230px);
    gap: var(--form-gap);
    border-bottom: 1px solid var(--wp--preset--color--gray);
    padding-block: 1.125rem 1rem;
    /*align-items: center;*/
}

.job-teaser__item__notice {
    margin-top: 0.25rem;
}

.job-teaser__headline {
    margin-block: 0;
    flex-basis: var(--first-column-width);
    flex-shrink: 0;
}

.job-teaser {
    --first-column-width: 400px;
}

.job-teaser__item__headline {
    margin: 0;
    font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.66), 1.3rem);
}

.job-teaser__column1, .job-teaser__headline {
    width: 100%;
}


@media (min-width: 1024px) {
    .job-teaser__column2,
    .job-teaser__column3,
    .job-teaser__column4 {
        padding-left: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .job-teaser__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-teaser__headline {
        flex-basis: auto;
        flex-shrink: 1;
        width: auto;
    }

    .job-teaser__form {
        width: 100%;
    }
}

@media (max-width: 850px) {
    .job-teaser__form {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .job-teaser__item {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem 1rem;
        justify-content: space-between;
    }

}
