/* Button "See All" Component */

.csrc-button-sa {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	font-family: var(--font-family-primary);
	transition: color 0.3s ease;
}

.csrc-button-sa__arrow {
	display: inline-block;
	margin-left: 5px;
	transition: transform 0.3s ease;
	font-size: 18px;
}

.csrc-button-sa:hover .csrc-button-sa__arrow {
	transform: translateX(5px);
}
