/* FG Consent – Content Blocker Placeholder Styles */

.fgc-blocked {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9; /* overridden by inline style from PHP */
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1em 0;
}

.fgc-blocked__thumbnail {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80px 80px;
	background-color: #e5e7eb;
	opacity: 0.4;
}

.fgc-blocked__overlay {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 1.5em;
	max-width: 90%;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 6px;
}

.fgc-blocked__text {
	font-size: 0.95rem;
	line-height: 1.4;
	margin: 0 0 1em;
	color: #1f2937;
}

.fgc-blocked__button {
	display: inline-block;
	padding: 0.75em 1.5em;
	background: #2563eb;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	min-height: 44px;
	line-height: 1.3;
	transition: background 0.15s ease;
}

.fgc-blocked__button:hover {
	background: #1d4ed8;
}

.fgc-blocked__button:focus-visible {
	background: #1d4ed8;
	outline: 2px solid #1e40af;
	outline-offset: 2px;
}

.fgc-blocked__remember {
	display: flex;
	align-items: center;
	gap: 0.5em;
	justify-content: center;
	margin-top: 0.75em;
	font-size: 0.85rem;
	color: #4b5563;
	cursor: pointer;
}

.fgc-blocked__remember input[type="checkbox"] {
	min-width: 18px;
	min-height: 18px;
	cursor: pointer;
}

@media (max-width: 640px) {
	.fgc-blocked__overlay {
		padding: 1em;
	}

	.fgc-blocked__text {
		font-size: 0.85rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fgc-blocked__button {
		transition: none;
	}
}
