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

.ri-consent {
	position: fixed;
	inset: auto 0 0;
	z-index: 99999;
	padding: 18px clamp(18px, 4vw, 64px);
	background: #0e1714;
	color: #f5f0e5;
	border-top: 2px solid #e05a45;
	box-shadow: 0 -14px 40px rgb(4 15 11 / 22%);
}

.ri-consent__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: end;
	max-width: 1480px;
	margin: 0 auto;
}

.ri-consent__eyebrow {
	margin: 0 0 5px;
	color: #ff8b72;
	font: 700 11px/1.2 "DM Sans", sans-serif;
	letter-spacing: .16em;
}

.ri-consent h2 {
	margin: 0 0 7px;
	color: inherit;
	font: 600 clamp(24px, 2.3vw, 36px)/1.02 "Newsreader", Georgia, serif;
}

.ri-consent p:not(.ri-consent__eyebrow) {
	max-width: 820px;
	margin: 0 0 6px;
	font: 400 14px/1.5 "DM Sans", sans-serif;
}

.ri-consent a {
	color: #f5f0e5;
	font: 500 13px/1.4 "DM Sans", sans-serif;
	text-underline-offset: 4px;
}

.ri-consent__actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

.ri-consent button,
.ri-consent-settings {
	appearance: none;
	border: 1px solid currentColor;
	border-radius: 0;
	cursor: pointer;
	font: 700 13px/1 "DM Sans", sans-serif;
}

.ri-consent__accept {
	padding: 15px 18px;
	background: #f5f0e5;
	color: #0e1714;
}

.ri-consent__reject {
	padding: 14px 17px;
	background: transparent;
	color: #f5f0e5;
}

.ri-consent button:hover,
.ri-consent button:focus-visible {
	outline: 2px solid #ff8b72;
	outline-offset: 3px;
}

.ri-consent-settings {
	position: fixed;
	right: 14px;
	bottom: 14px;
	z-index: 99998;
	padding: 9px 12px;
	background: #0e1714;
	color: #f5f0e5;
	opacity: .82;
}

@media (max-width: 760px) {
	.ri-consent__inner {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.ri-consent__actions {
		flex-wrap: wrap;
	}

	.ri-consent__actions button {
		flex: 1 1 180px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ri-consent *,
	.ri-consent-settings {
		scroll-behavior: auto !important;
	}
}

