/* ==========================================================================
   FOOTER — иконки соцсетей ("Наші спільноти")
   ========================================================================== */

.footer-social .social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

@media (max-width: 860px){
	.footer-social .social-icons {
		display: grid;
		grid-template-columns: repeat(2, 40px);
		gap: 12px;
	}
}

.footer-social .social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;

	/*background: rgba(255, 255, 255, 0.08);*/
	color: #FCFCFC;
	text-decoration: none;
	font-family: 'Unbounded', sans-serif;
	font-size: 14px;
	text-transform: uppercase;

	transition: background-color 0.2s ease;
}

.footer-social .social-icon:hover,
.footer-social .social-icon:focus {
	background: #FF922D;
}

/* Загруженная картинка (SVG/PNG) */
.footer-social .social-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

/* FontAwesome-иконка */
.footer-social .social-icon i {
	font-size: 18px;
	line-height: 1;
}
