/*
 * Release hardening layer.
 * Keep production-safe browser defaults here so later visual work does not
 * need to add another global override block to main.css.
 */

picture,
video,
canvas,
iframe {
	display: block;
	max-width: 100%;
}

iframe {
	border: 0;
}

button,
input,
select,
textarea {
	font: inherit;
}

button:not(:disabled),
select:not(:disabled),
input[type='checkbox']:not(:disabled),
input[type='radio']:not(:disabled) {
	cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: not-allowed;
}

[hidden] {
	display: none !important;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
