.article-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.article-teaser {
	transition: all 0.25s ease;
	border-radius: 8px;
	overflow: hidden;
	background: white;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.article-teaser:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.article-teaser a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.teaser-image {
	height: 200px;
	overflow: hidden;
	background: #f4f4f4;
}

.teaser-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.article-teaser:hover .teaser-image img {
	transform: scale(1.04);
}

.teaser-text {
	padding: 1.25rem;
}

.teaser-text h3 {
	margin: 0 0 0.6rem 0;
	font-size: 1.35rem;
	line-height: 1.25;
}

.teaser-body {
	color: #555;
	line-height: 1.55;
	margin: 0;
}
