.wck-banner {
	--wck-primary: #1a73e8;
	--wck-bg: #ffffff;
	--wck-fg: #1c1c1c;
	--wck-border: #e2e2e2;
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999999;
	background: var( --wck-bg );
	color: var( --wck-fg );
	border-top: 1px solid var( --wck-border );
	box-shadow: 0 -2px 12px rgba( 0, 0, 0, 0.12 );
	font-size: 14px;
	line-height: 1.5;
}

.wck-banner.wck-theme-dark {
	--wck-bg: #1f1f1f;
	--wck-fg: #f2f2f2;
	--wck-border: #3a3a3a;
}

.wck-banner[hidden] {
	display: none;
}

.wck-banner.wck-pos-bottom {
	bottom: 0;
}

.wck-banner.wck-pos-top {
	top: 0;
	bottom: auto;
	border-top: none;
	border-bottom: 1px solid var( --wck-border );
	box-shadow: 0 2px 12px rgba( 0, 0, 0, 0.12 );
}

.wck-banner.wck-pos-box {
	left: 20px;
	right: auto;
	bottom: 20px;
	max-width: 380px;
	border: 1px solid var( --wck-border );
	border-radius: 10px;
	box-shadow: 0 6px 24px rgba( 0, 0, 0, 0.18 );
}

.wck-banner__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: flex-start;
	justify-content: space-between;
}

.wck-banner.wck-pos-box .wck-banner__inner {
	flex-direction: column;
	padding: 18px;
}

.wck-banner__copy {
	flex: 1 1 420px;
	min-width: 0;
}

.wck-banner__title {
	margin: 0 0 6px;
	font-weight: 600;
	font-size: 15px;
}

.wck-banner__text {
	margin: 0;
	opacity: 0.9;
}

.wck-banner__text a {
	color: var( --wck-primary );
	text-decoration: underline;
}

.wck-banner__categories {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 200px, 1fr ) );
	gap: 10px;
}

.wck-banner__categories.wck-hidden {
	display: none;
}

.wck-category label {
	display: block;
	cursor: pointer;
}

.wck-category input {
	margin-right: 6px;
}

.wck-category__desc {
	display: block;
	margin-left: 20px;
	opacity: 0.7;
	font-size: 12.5px;
}

.wck-banner__actions {
	flex: 0 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.wck-btn {
	appearance: none;
	border-radius: 6px;
	padding: 9px 16px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
	white-space: nowrap;
}

.wck-btn--primary {
	background: var( --wck-primary );
	color: #fff;
}

.wck-btn--outline {
	background: transparent;
	border-color: var( --wck-border );
	color: var( --wck-fg );
}

.wck-btn--text {
	background: transparent;
	color: var( --wck-fg );
	text-decoration: underline;
	padding-left: 4px;
	padding-right: 4px;
}
