/* =============================================
   02_UI_COMPONENTS / ui-link-arrow
   Ссылка со стрелкой.
   ============================================= */

.arrowlink {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-direction: row-reverse;
	gap: 4px;
	font-size: 14px;
	line-height: 128.571429%;
	color: var(--greenColor4);
	font-weight: 500;
	transition: color 0.3s;
}
.arrowlink::before {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 400;
}

/* ── Hover ── */

@media (any-hover: hover), (pointer: fine) {
	html:not([data-fls-touch]) .arrowlink:hover {
		color: var(--greenColor2);
	}
}
