/* ===============================
   Startseiten News – Layout
   =============================== */

.iw-news-row {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.iw-news-col {
	flex: 1 1 240px;
	min-width: 240px;
	background: var(--primary-color);
}

/* ===============================
   News Box
   =============================== */

.iw-news-box {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    color: #fff;
	text-align: center;
}

.iw-news-box img {
	max-width: 100%;
	height: auto;
	display: block;
}
.iw-news-box h4 {
    margin: 25px 0 0;
    color: #fff;
}

.iw-news-box .iw-news-text {
	margin: 0 0 12px;
}

.iw-news-box a.button {
	display: inline-block;
}

/* ===============================
   Optional: Feinschliff
   =============================== */

/* Falls du zentrierte Buttons willst */
.iw-news-box p:last-child {
	margin-bottom: 0;
}

/* Mobile Anpassung */
@media (max-width: 767px) {
	.iw-news-row {
		gap: 16px;
	}
}