/* =====================================================
   KIDS AM DÖNBERG E.V.
   AKTUELLES – ÜBERSICHT
   ===================================================== */


/* =====================================================
   AKTUELLES – ÜBERSICHT
   ===================================================== */

.news-overview {
    background-color: var(--background-beige);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}


/* =====================================================
   NACHRICHTENKARTE
   ===================================================== */

.news-overview-card {
    overflow: hidden;

    display: flex;
    flex-direction: column;

    height: 100%;

    background-color: var(--white);

    border-radius: 24px;

    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.07);
}


/* Bild */

.news-overview-image {
    display: block;
    overflow: hidden;

    height: 260px;

    color: inherit;
    text-decoration: none;
}

.news-overview-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;
}


/* Inhalt */

.news-overview-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 22px;
}
.news-overview-content time {
    display: block;

    margin-bottom: 8px;

    color: var(--green);

    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-overview-content h2 {
    margin: 0 0 12px;

    color: var(--blue);

    font-size: 1.35rem;
    line-height: 1.2;
}

.news-overview-content h2 a {
    color: inherit;

    text-decoration: none;
}

.news-overview-content h2 a:hover {
    text-decoration: underline;
}

.news-overview-content h2 a:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

.news-overview-content p {
    margin: 0 0 18px;

    line-height: 1.55;
}

.news-overview-content > p {
    display: -webkit-box;
    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;

    margin: 0 0 18px;

    line-height: 1.55;
}

.news-overview-content .button {
    margin-top: auto;
}

/* Bild-Platzhalter */

.news-image-placeholder {
    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);
    background-color: var(--background-light);

    font-weight: 700;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (min-width: 768px) {

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

}