.intro p {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
}

.articles-grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

.articles {
    column-gap: 3rem;
    column-width: 300px;   /* Mindestbreite einer Spalte */
    width: 100%;           /* volle Breite */
    max-width: 1206px;     /* z. B. 4 Spalten */
    margin-left: 0;             /* linksbündig */
    margin-top: 3rem;
}

.articles li {
    display: inline-block; /* gesamtes List-Item zusammenhalten */
    width: 100%;           /* füllt Spalte */
    margin-bottom: 3rem; /* Abstand zwischen Items */
}

.articles img {
    width: 100%;           /* Bild füllt Figur */
    height: auto;
    display: block;        /* verhindert kleine Lücken unter img */
}

.articles figcaption {
    margin-top: 0.5rem;
}
