/* age-gate.css — blocking modal + persistent banners. */

.hc-agegate {
	position: fixed;
	inset: 0;
	background: rgba(15, 14, 13, 0.65);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 20px;
	opacity: 0;
	transition: opacity .3s ease;
}
.hc-agegate[aria-hidden="false"] {
	display: flex;
	opacity: 1;
}

.hc-agegate__dialog {
	background: var(--c-paper);
	max-width: 520px;
	width: 100%;
	padding: 40px 40px 32px;
	border: 1px solid var(--c-ink);
	border-top: 4px solid var(--c-ink);
	text-align: center;
}

.hc-agegate__wordmark {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 20px;
	color: var(--c-ink);
}

.hc-agegate__rule {
	border: 0;
	border-top: 1px solid var(--c-stone);
	margin: 0 0 22px;
}

.hc-agegate__text {
	font-family: var(--f-body);
	font-size: var(--f-body);
	line-height: 1.55;
	color: var(--c-ink);
	margin: 0 0 1em;
	text-align: left;
}

.hc-agegate__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: center;
	margin: 24px 0 18px;
}

.hc-agegate__help {
	font-family: var(--f-body);
	font-size: var(--f-body-s);
	color: var(--c-ink-muted);
	line-height: 1.55;
	text-align: left;
}
.hc-agegate__help a { color: var(--c-accent); border-bottom: 1px solid var(--c-accent); }
