<style> /* 4er-Grid: Desktop 4, breiter Tablet 3, Tablet 2, Handy 1 */ .portal-grid {

 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 16px;
 margin: 16px 0 24px;

}

/* Falls Colored box intern Block-Elemente hat, strecken wir die Karte */ .portal-grid .colored-box, .portal-grid .colored-box > div {

 height: 100%;

}

/* Kartenoptik für Colored box (sanft, optional) */ .portal-grid .colored-box {

 background: #fff;
 border: 1px solid #C9D0D8;
 border-radius: 12px;
 box-shadow: 0 1px 2px rgba(0,0,0,.05);
 overflow: hidden;
 padding: 10px 12px;

}

/* Bilder sauber einpassen */ .portal-grid .colored-box img {

 max-width: 100%;