.r92-live-panel {
	--r92-panel-border: #d4d9df;
	--r92-panel-muted: #4b5563;
	--r92-panel-surface: #f7f8fa;
	border: 1px solid var(--r92-panel-border);
	border-radius: 0.5rem;
	padding: clamp(1rem, 3vw, 1.5rem);
}

.r92-live-panel__title {
	margin-block: 0 1rem;
}

.r92-live-panel__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.r92-live-panel__item {
	background: var(--r92-panel-surface);
	border-radius: 0.375rem;
	padding: 1rem;
}

.r92-live-panel__item h3,
.r92-live-panel__item p {
	margin-block: 0;
}

.r92-live-panel__item p + p {
	margin-block-start: 0.5rem;
}

.r92-live-panel__meta,
.r92-live-panel__notice {
	color: var(--r92-panel-muted);
	font-size: 0.875em;
}

.r92-consent[hidden],
.r92-consent [hidden] {
	display: none !important;
}

.r92-consent {
	background: rgb(17 24 39 / 55%);
	inset: 0;
	overflow: auto;
	padding: 1rem;
	position: fixed;
	z-index: 100000;
}

.r92-consent__dialog {
	background: #fff;
	border: 2px solid #111827;
	border-radius: 0.5rem;
	box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 25%);
	color: #111827;
	margin: max(1rem, 8vh) auto 0;
	max-width: 46rem;
	padding: clamp(1rem, 4vw, 2rem);
}

.r92-consent__dialog h2 {
	color: inherit;
	margin-block: 0 0.75rem;
}

.r92-consent__dialog a {
	color: #174ea6;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.r92-consent__choices,
.r92-consent__settings-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-block-start: 1.25rem;
}

.r92-consent__button,
.r92-consent-footer__button {
	background: #173f73;
	border: 2px solid #173f73;
	border-radius: 0.25rem;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	line-height: 1.25;
	min-height: 2.75rem;
	padding: 0.625rem 1rem;
}

.r92-consent__choice {
	flex: 1 1 12rem;
}

.r92-consent__button--secondary {
	background: #fff;
	color: #173f73;
}

.r92-consent__button:hover,
.r92-consent-footer__button:hover {
	background: #0d2b50;
	border-color: #0d2b50;
	color: #fff;
}

.r92-consent__button--secondary:hover {
	background: #eef3f8;
	color: #0d2b50;
}

.r92-consent__button:focus-visible,
.r92-consent-footer__button:focus-visible,
.r92-consent__dialog a:focus-visible,
.r92-consent__category input:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 3px;
}

.r92-consent__category {
	align-items: start;
	border-block-start: 1px solid #d1d5db;
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) auto;
	padding-block: 1rem;
}

.r92-consent__category p {
	margin-block: 0.35rem 0;
}

.r92-consent__category label {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.r92-consent__category input {
	height: 1.25rem;
	margin: 0;
	width: 1.25rem;
}

.r92-consent-footer {
	display: flex;
	justify-content: center;
	padding: 1rem;
}

.r92-consent-footer__button {
	background: transparent;
	border-color: currentColor;
	color: inherit;
	font-weight: 600;
	min-height: 2.5rem;
	padding: 0.5rem 0.75rem;
}

.r92-consent-placeholder {
	background: #f3f4f6;
	border: 1px solid #9ca3af;
	border-radius: 0.375rem;
	color: #111827;
	padding: 1rem;
}

.r92-consent-placeholder p {
	margin-block: 0 0.75rem;
}

@media (max-width: 36rem) {
	.r92-consent {
		padding: 0;
	}

	.r92-consent__dialog {
		border-inline: 0;
		border-radius: 0;
		margin-block-start: 0;
		min-height: 100%;
	}

	.r92-consent__category {
		grid-template-columns: 1fr;
	}

	.r92-consent__choices,
	.r92-consent__settings-actions {
		flex-direction: column;
	}

	.r92-consent__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.r92-consent__button,
	.r92-consent-footer__button {
		transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
	}
}
