/**
 * Floating independence / affiliation notice (cookie-banner style).
 *
 * @package NCPA_Theme
 */

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ncpa-independence-notice {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 999998;
	max-width: 720px;
	margin: 0 auto;
	font-family: inherit;
	pointer-events: none;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.ncpa-independence-notice.ncpa-independence-notice--visible {
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
}

.ncpa-independence-notice.ncpa-independence-notice--dismissed {
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
}

.ncpa-independence-notice-inner {
	position: relative;
	background: linear-gradient(145deg, rgba(26, 26, 26, 0.97), rgba(12, 12, 12, 0.98));
	border: 1px solid rgba(126, 173, 237, 0.35);
	border-radius: 12px;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.04) inset;
	backdrop-filter: blur(10px);
	padding: 14px 44px 14px 16px;
}

.ncpa-independence-notice-inner::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #7eaded, #4a90e2);
	border-radius: 12px 0 0 12px;
}

.ncpa-independence-notice-text {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	letter-spacing: 0.01em;
}

.ncpa-independence-notice-text + .ncpa-independence-notice-text {
	margin-top: 8px;
	font-size: 0.75rem;
	line-height: 1.5;
	color: rgba(185, 196, 211, 0.95);
}

.ncpa-independence-notice-close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 32px;
	height: 32px;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: #7eaded;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
}

.ncpa-independence-notice-close:hover,
.ncpa-independence-notice-close:focus-visible {
	background: rgba(126, 173, 237, 0.2);
	color: #fff;
	outline: none;
}

/* Site footer legal block */
.site-footer .footer-legal {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.site-footer .footer-legal-main,
.site-footer .footer-legal-logos {
	margin: 0 0 12px;
	font-size: 0.75rem;
	line-height: 1.6;
	color: rgba(185, 196, 211, 0.95);
	text-align: center;
}

.site-footer .footer-legal-logos {
	margin-bottom: 0;
	color: rgba(185, 196, 211, 0.85);
	font-size: 0.7rem;
}

@media (max-width: 600px) {
	.ncpa-independence-notice-inner {
		padding-right: 40px;
		padding-left: 14px;
	}

	.ncpa-independence-notice-text {
		font-size: 0.75rem;
	}
}
