/**
 * Back Link Module Styles
 *
 * @package WP_R2Go4_Detail
 */

.wp-r2go4-back-link-module {
	width: 100%;
}

.wp-r2go4-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--global-palette2, #2b6cb0);
	background: transparent;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
	margin-left: 0;
	padding: 0;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.wp-r2go4-back-link:hover {
	opacity: 0.7;
	text-decoration: none;
	color: var(--global-palette2, #2b6cb0);
}

.wp-r2go4-back-link-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.wp-r2go4-back-link-text {
	font-weight: 500;
}

