.news__wrapper {
	margin-bottom: 40px;
}

.news__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	gap: 20px;
	margin-inline: auto;
}

.news-list__item {
	display: flex;
	width: 100%;
	gap: 20px;
	flex-wrap: wrap;
	height: fit-content;
}

.news-list__item:hover {
	color: #F63F95;
}

.item-image__wrapper {
	overflow: hidden;
	width: 100%;
	border: 1px solid #FFD7E1;
	border-radius: 10px;
	height: 100%;
	max-height: 300px;
}

.item-image__wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media(max-width: 991px) {
	.news__list {
		grid-template-columns: repeat(2, 1fr);
	}
	.item-image__wrapper {
		max-height: 250px;
	}
}

@media(max-width: 568px) {
	.item-image__wrapper {
		max-height: 200px;
	}
}

@media(max-width: 480px) {
	.news__list {
		grid-template-columns: repeat(1, 1fr);
	}
	.item-image__wrapper {
		max-height: 350px;
	}
}