/* LDT Cookie Consent banner */
.ldtcc {
	position: fixed;
	z-index: 2147483000;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	padding: 18px 22px;
	background: #1c1c1c;
	color: #f5f5f5;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: 0 -2px 18px rgba( 0, 0, 0, 0.28 );
}
.ldtcc *,
.ldtcc *::before,
.ldtcc *::after {
	box-sizing: border-box;
}
.ldtcc--bottom {
	left: 0;
	right: 0;
	bottom: 0;
}
.ldtcc--bottom-left,
.ldtcc--bottom-right {
	bottom: 20px;
	max-width: 420px;
	flex-direction: column;
	align-items: flex-start;
	border-radius: 10px;
}
.ldtcc--bottom-left {
	left: 20px;
}
.ldtcc--bottom-right {
	right: 20px;
}
.ldtcc__msg {
	margin: 0;
	flex: 1 1 320px;
	color: inherit;
	/* Stated outright, not inherited: a theme's own `p` rule outranks the
	   font-size inherited from .ldtcc and can double the bar's height. */
	font-size: 14px;
	line-height: 1.5;
}
.ldtcc__link {
	font: inherit;
	color: #fff;
	text-decoration: underline;
	white-space: nowrap;
}
.ldtcc__link:hover,
.ldtcc__link:focus {
	color: #fff;
}
.ldtcc__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}
.ldtcc__btn {
	appearance: none;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 6px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	transition: opacity 0.15s ease, background 0.15s ease;
}
.ldtcc__btn--accept {
	background: var( --ldtcc-accent, #1a73e8 );
	color: #fff;
}
.ldtcc__btn--decline {
	background: transparent;
	color: #f5f5f5;
	border-color: rgba( 255, 255, 255, 0.4 );
}
.ldtcc__btn:hover {
	opacity: 0.88;
}
.ldtcc__btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
/*
 * Tail of the page kept clear of the fixed bar. Without it the bar covers the
 * last ~75px of the document, which is exactly where footer legal/disclosure
 * copy sits. Height is written inline from the live bar height — see ldtcc.js.
 */
.ldtcc-spacer {
	position: absolute;
	left: 0;
	width: 1px;
	pointer-events: none;
}

@media ( max-width: 640px ) {
	.ldtcc {
		flex-direction: column;
		align-items: stretch;
	}
	.ldtcc__msg {
		/* flex-basis is a HEIGHT once the bar stacks — leaving the 320px basis
		   from the row layout in place makes the bar swallow half the screen. */
		flex: 0 0 auto;
	}
	.ldtcc__actions {
		justify-content: flex-end;
	}
}

/* GPC notice, shown inside the message when the browser sent the signal */
.ldtcc__gpc {
	display: block;
	margin-top: 0.4em;
	font-size: 0.9em;
	opacity: 0.85;
}
