.article-snippet {
    background-color: #f5f5f5;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    margin: 20px auto;
	 padding: 15px;   
    display: flex;
    flex-direction: row;   /* Desktop: nebeneinander */
    align-items: stretch;  /* Bild & Text gleich hoch */
    gap: 20px;
    overflow: hidden;
}

/* Bild */
.article-snippet img {
    width: 250px;
    height: 100%;          /* Bild passt sich der Text-Höhe an */
    object-fit: cover;
    border-radius: 5px 0 0 5px;
    flex-shrink: 0;
    display: block;
}

/* Textbereich */
.article-snippet-content {
    padding: 0 12px;       /* oben/unten minimal, seitlich 12px */
    flex: 1;
    text-align: left;
}

.article-snippet-content h4 {
    font-size: 1.4em;
    color: #333;
    margin: 0;
}

.article-snippet-content p {
    color: #666;
    margin: 8px 0; /* Abstand oben/unten minimal */
}

.article-snippet-content a {
    display: inline-block;
    margin: 10px 0; /* kleiner Abstand oben/unten */
    padding: 8px 16px;
    background-color: #3d8542;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.article-snippet-content a:hover {
    background-color: #85c789;
}

/* Handyansicht */
@media (max-width: 768px) {
    .article-snippet {
        flex-direction: column !important;
        align-items: stretch;
    }

    .article-snippet img {
        width: 100% !important;
        max-height: 200px;    /* Banner-Höhe auf Handy */
        object-fit: cover;
        border-radius: 5px 5px 0 0 !important;
        height: auto;         /* Höhe nicht mehr an Text gekoppelt */
    }

    .article-snippet-content {
        text-align: center;
        padding: 5px 10px;    /* kompakt oben/unten */
    }
}