/*
 * **********************************************************************
 * Policy Pages — back link
 *
 * Styles the "← Back" anchor injected into h1.entry-title on the
 * Privacy Policy, Terms and Conditions, Cookie Policy, and
 * Membership and Purchase Policy pages.
 *
 * @package  KadenceChild
 * @version  1.0.0
 * @updated  2026-06-15
 * **********************************************************************
 */

/* =============================================================================
   Back link
   ============================================================================= */

.mah-policy-back {
	display: inline-block;
	margin-left: 20px;
	vertical-align: middle;
	font-size: 0.875rem;
	font-weight: 500;
	color: #2b7f4b;
	text-decoration: none;
	border: 1px solid #2b7f4b;
	padding: 3px 12px;
	border-radius: 3px;
	white-space: nowrap;
	line-height: 1.5;
	transition: background 0.15s ease, color 0.15s ease;
}

.mah-policy-back:hover,
.mah-policy-back:focus {
	background: #2b7f4b;
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.mah-policy-back:focus-visible {
	outline: 2px solid #2b7f4b;
	outline-offset: 2px;
}
