/* ======================= -------- Block - Hero -------- ========================== */
/* full-bleed photograph band beneath the homepage header */
.block-hero {
	position: relative;
	height: 56rem;
	background: var(--ink);
}

	/* doily-scalloped hem where the photo meets the cream page */
	.block-hero::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -1px;
		height: 1.8rem;
		background: radial-gradient(circle at 50% 100%, var(--cream) 1.7rem, transparent 1.8rem);
		background-size: 3.6rem 1.8rem;
		z-index: 3;
	}

@media (max-width: 1300px) {
	/* Default */
	.block-hero {
		height: 42rem;
	}
}

@media (max-width: 650px) {
	/* Default */
	.block-hero {
		height: 32rem;
	}
}

@media (max-width: 450px) {
	/* Default */
	.block-hero {
		height: 24rem;
	}
}
