.news-zm-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.news-zm-item {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 1rem;
	padding-bottom: 1rem;

	@media (max-width: 500px) {
		grid-template-columns: 1fr;
	}
}

.news-zm-item:not(:last-child) {
	border-bottom: 1px solid #ccc;
}

.news-zm-image {
	width: 100%;
	height: auto;
}

.news-zm-text {
	width: 100%;
	height: auto;
	font-size: 0.85rem;
}

.news-zm-text__paragraph {
	margin-top: 0;
}
