.ai-feed-spinner {
	margin: 0 auto;
	width: 60px;
}
.ai-feed-spinner svg {
	color: var(--primary-color-inverse, #fff);
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	color: var(--core-grey, #444);
	opacity: 0.5;
}
#instafeed {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: var(--site-spacing, 24px);
}
#instafeed .ai-feed-single {
	max-width: 200px;
	width: 100%;
}
@media all and (max-width: 1350px) {
	#instafeed .ai-feed-single:nth-child(1n + 8) {
		display: none;
	}
}
@media all and (max-width: 1200px) {
	#instafeed .ai-feed-single:nth-child(1n + 7) {
		display: none;
	}
}
@media all and (max-width: 800px) {
	#instafeed .ai-feed-single:nth-child(1n + 5) {
		display: none;
	}
}
.ai-feed-single {
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.ai-feed-single a {
	overflow: hidden;
	padding-top: 100%;
	height: 0;
	display: block;
	position: relative;
}
.ai-feed-single a span {
	position: absolute;
	left: 50%;
	top: 50%;
	transition: transform 1.5s ease-out;
	transform: translateX(-50%) translateY(-50%) scale(1.01);
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.ai-feed-single:hover a span {
	transform: translateX(-50%) translateY(-50%) scale(1.1);
}
