.head-bg-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 100%;
    height: 780px;
}

.head-content {
    align-content: center;
    text-align: center;
}

.head-content-welcome {
    letter-spacing: 1em;
}

.head-content-title {
    font-weight: 800;
    letter-spacing: 0.15em;
}

/*********** Kalender ***********/
.calendar-item {
    height: 140px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-item-date {
    overflow: hidden;
    transition: transform 0.35s ease;
}

.calendar-item-text {
    transition: background-color 0.35s ease;
}

.calendar-item:hover {
    background-color: var(--acc-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.front-page-top-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.front-page-top-item:hover {
    background-color: var(--acc-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

/*********** NEWS ***********/
/* Grundeinstellung für Bilder */
.news-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-thumb-wrap {
    aspect-ratio: 16 / 9;
}

.news-thumb-wrap>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item:hover {
    background-color: var(--acc-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

/* News (Desktop) */
@media (min-width: 768px) {
    :root {
        --news-card-h: 220px;
    }

    .news-item {
        height: var(--news-card-h);
    }

    .news-item>[class*="col-md-"] {
        height: 100%;
    }

    .news-thumb-wrap {
        aspect-ratio: auto;
        height: 100%;
    }

    .news-item-text {
        height: 100%;
    }

    .news-item-text>div {
        min-height: 100%;
    }

    .news-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-meta {
        margin-top: auto;
    }
}

/* NEws (Mobile): Bild oben 16:9 */
@media (max-width: 767.98px) {
    .news-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/*********** Kooperationspartner ***********/
.cooppartner {
    height: 100px;
}

@media (min-width: 992px) and (min-height: 900px) {
    .head-bg-img {
        height: 810px;
    }

    .spacer-lg {
        height: 102px;
    }
}

@media (min-width: 992px) and (min-height: 1000px) {
    .head-bg-img {
        height: 1080px;
    }
}