/**
 * Contact Legal Notice Stylesheet
 *
 * Lightweight, accessible stylesheet designed to seamlessly adapt to the active WordPress theme.
 *
 * @package ContactLegalNotice
 * @version 1.0.0
 */

.cln-notice-box {
	background-color: #f8f8f8;
	border-left: 3px solid var(--wp--preset--color--primary, var(--theme-primary-color, #0073aa));
	border-radius: 4px;
	padding: 1em 1.25em;
	margin-top: 1.5rem;
	margin-bottom: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	box-shadow: none;
	box-sizing: border-box;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Paragraph spacing inside notice box */
.cln-notice-box p {
	margin: 0 0 0.5em 0;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.cln-notice-box p:last-child {
	margin-bottom: 0;
}

/* Clickable hyperlink styling */
.cln-notice-box a.cln-notice-link {
	color: var(--wp--preset--color--primary, var(--theme-primary-color, #0073aa));
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.cln-notice-box a.cln-notice-link:hover,
.cln-notice-box a.cln-notice-link:focus {
	opacity: 0.85;
	text-decoration: underline;
}

.cln-notice-box a.cln-notice-link:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary, #0073aa);
	outline-offset: 2px;
}
