.jobs-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
}

.jobs-wrapper h2 {
    text-align: center;
    margin-bottom: 0;
}

.jobs-wrapper .jobs .job {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: var(--white);
}

.jobs-wrapper .jobs .job .content {
    display: flex;
    flex-direction: column;
    gap: .5em;
    align-items: stretch;
    justify-content: center;
    align-self: stretch;
    padding: 2rem;
}

.jobs-wrapper .jobs .job > * {
    min-width: 100%;
    flex-grow: 1;
}

.jobs-wrapper .jobs .job:only-child {
    flex-direction: row;
    flex-grow: 1;
    width: 100%;
}

.jobs-wrapper .jobs .job:only-child > * {
    min-width: 0;
}

.jobs-wrapper img {
    object-fit: cover;
    aspect-ratio: 1.5;
}
