/* Social Icons widget. */

.vora-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.vora-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	background: #17131a;
	transition: opacity 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.vora-social__link:hover { transform: translateY(-2px); }

.vora-social__link i,
.vora-social__link svg {
	width: 1em;
	height: 1em;
	font-size: inherit;
}

.vora-social--circle .vora-social__link { border-radius: 50%; }
.vora-social--rounded .vora-social__link { border-radius: 7px; }
.vora-social--square .vora-social__link { border-radius: 0; }

.vora-social--bare .vora-social__link {
	width: auto;
	height: auto;
	color: inherit;
	background: transparent;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

@media (prefers-reduced-motion: reduce) {
	.vora-social__link { transition: none; }
	.vora-social__link:hover { transform: none; }
}
