/* SteckInsights Cookie Manager — placeholders for blocked content */

.sicm-placeholder {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	max-width: 100%;
	min-height: 150px;
	margin: 0 0 1em;
	padding: 1rem;
	overflow: hidden;
	border-radius: var(--sicm-radius, 12px);
	background-color: #e5e7eb;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30%;
	color: #1f2937;
	font-size: var(--sicm-font-size, 14px);
	line-height: 1.5;
	text-align: center;
}

.sicm-placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background: inherit;
	background-image: url("../images/placeholder-generic.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: min(35%, 140px);
	opacity: 0.12;
	pointer-events: none;
}

.sicm-placeholder__inner {
	position: relative;
	max-width: 32em;
}

.sicm-placeholder__text {
	margin: 0 0 0.75em;
	color: inherit;
	font-size: 1em;
}

.sicm-placeholder .sicm-placeholder__button {
	margin: 0;
}

.sicm-placeholder--video {
	background-color: #111827;
	color: #f9fafb;
}

.sicm-placeholder--video::before {
	background-image: url("../images/placeholder-video.svg");
	opacity: 0.18;
}

.sicm-placeholder--map::before {
	background-image: url("../images/placeholder-map.svg");
}

@media (max-width: 480px) {
	.sicm-placeholder {
		min-height: 200px;
		aspect-ratio: auto !important;
	}
}
