/* Bereich */

.bereich .bereich-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 48px;
}

.bereich .bereich-cards > div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 12px;
    background-color: var(--light-grey);
    padding: 25px;
    border-radius: 12px;
}

.bereich .bereich-cards > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.bereich .bereich-cards .text {
    padding: 6px;
}

@media (max-width: 850px) {
    .bereich .bereich-cards {
        /* grid-template-columns: fit-content(600px); */
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

/* Bereich */


/* Gastgeber */

.gastgeber-container {
    background-color: var(--green);
    width: 100%;
    margin: 25px 0;
    padding: 25px 0;
}

.gastgeber {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.gastgeber img {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.gastgeber h2 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    display: flex;
    align-items: flex-end;
}

.gastgeber .button {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

@media (max-width: 850px) {
    .gastgeber {
        grid-template-columns: 1fr;
    }

    .gastgeber img {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
    }

    .gastgeber h2 {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        display: block;
    }

    .gastgeber .button {
        grid-row: 3 / 4;
        grid-column: 1 / 2;
    }
}

/* Gastgeber */


/* Stellenangebote */

.jobs .kategorie {
    font-size: 25px;
}

.jobs .stellen {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 24px;
}

.jobs .stellen > div {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-grey);
    width: 360px;
    height: 70px;
    border-radius: 12px;
    text-align: center;
}




.jobs .stelle {
    display: grid;
    /*grid-template-columns: 360px 360px 360px;
    grid-auto-rows: 150px;*/
    grid-template-columns: 360px 360px 360px;
    grid-auto-rows: 150px;
    gap: 48px;
    padding: 0 0 32px 0;
}

.jobs .stelle > div {
    width: 100%;
    height: 100%;
    /*border: 2px solid var(--beige);*/
    background-color: var(--light-grey);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 16px;
    text-align: center;
}

.jobs .stelle > div .titel {
    font-weight: 500;
}

@media (max-width: 1280px) {
    .jobs .stelle {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 800px) {
    .jobs .stelle {
        grid-template-columns: 1fr;
    }
}

/* Stellenangebote */