/* Social Feed — Figma node 1:445 */

.wpcc-social-feed {
	padding-top: 65px;
	padding-bottom: 80px;
}

.wpcc-social-feed__title {
	margin: 0 0 25px;
	font-family: var(--wpcc-font);
	font-size: 40px;
	font-weight: 700;
	line-height: 60px;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
}

.wpcc-social-feed__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.wpcc-social-feed__item {
	margin: 0;
	width: 100%;
	max-width: 355px;
	margin-inline: auto;
}

.wpcc-social-feed__item img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
}

@media (max-width: 1200px) {
	.wpcc-social-feed__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.wpcc-social-feed__grid {
		grid-template-columns: 1fr;
	}

	.wpcc-social-feed__item {
		max-width: 355px;
	}
}
