.wessel-news {
    padding: 72px 0;
    background: #ffffff;
}

.wessel-news__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.wessel-news__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.wessel-news__kicker {
    font-size: 24px;
    font-weight: 700;
    color: #bfd635;
    margin: 0;
}

.wessel-news__headline {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #001945;
    margin: 0;
}

/* Grid */
.wessel-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .wessel-news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .wessel-news__grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.wessel-news__item {
    border-radius: 20px;
    overflow: hidden;
    background: #f7f8fb;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.wessel-news__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Bild */
.wessel-news__image img {
    width: 100%;
    display: block;
    height: 210px;
    object-fit: cover;
}

/* Body */
.wessel-news__body {
    padding: 18px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Meta */
.wessel-news__meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: #5b6780;
}

.wessel-news__category {
    color: #bfd635;
}

/* Titel */
.wessel-news__title {
    font-size: 18px;
    font-weight: 700;
    color: #001945;
    margin: 0;
}

/* Excerpt mit 3-Zeilen-Clamp */
.wessel-news__excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #001945;
    margin-top: 4px;
    margin-bottom: 12px;

    display: -webkit-box;
    -webkit-line-clamp: 3;     /* <= 3 Zeilen */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fallback: optional max-height für Nicht-Webkit */
.wessel-news__excerpt {
    max-height: calc(1.6em * 3);
}

/* Weiterlesen */
.wessel-news__more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #001945;
}

.wessel-news__more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #bfd635;
    font-size: 13px;
}

/* Hover */
.wessel-news__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
