/**
 * Reveal Block v1.0.0 — minimal styling.
 * Style hooks: .reveal-block, .reveal-block__button, .reveal-block__content, .reveal-block--revealed
 * Override freely in your theme; these are intentionally light.
 */
.reveal-block__button {
	display: inline-block;
	padding: 0.6em 1.2em;
	font: inherit;
	line-height: 1.2;
	cursor: pointer;
	color: #fff;
	background: #2271b1;
	border: 0;
	border-radius: 4px;
	transition: background 0.15s ease;
}

.reveal-block__button:hover,
.reveal-block__button:focus {
	background: #135e96;
}

.reveal-block__button:focus-visible {
	outline: 2px solid #135e96;
	outline-offset: 2px;
}

.reveal-block__content[hidden] {
	display: none;
}
