/* ============================================
   MW Arrow Link Widget
   ============================================ */

.mw-arrow-link-wrapper {
	display: flex;
}

.mw-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #3B4BF9;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mw-arrow-link__arrow {
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.mw-arrow-link:hover .mw-arrow-link__arrow {
	transform: translateX(5px);
}
