.ig8 {
	width: 100%;
}

.ig8__grid {
	display: grid;
}

.ig8__grid a {
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.ig8__grid img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ig8__grid a:hover img {
	transform: scale(1.05);
}

.ig8__error {
	color: red;
	font-size: 14px;
	margin-top: 8px;
}

@media screen and (max-width: 900px){
	.ig8__grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}