/* LNTA Page Banners — readability scrim.
   The theme paints the page title straight onto the photograph, which works on
   the dark aerial it shipped with but not on brighter images. This lays a
   brand-green wash between the photo and the text on every page banner. */

.breadcumb-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	/* Slightly deeper through the middle band, where the title and breadcrumb
	   sit, so the edges of the photograph stay visible. */
	background: linear-gradient(
		180deg,
		rgba(2, 31, 7, 0.40) 0%,
		rgba(2, 31, 7, 0.62) 45%,
		rgba(2, 31, 7, 0.62) 62%,
		rgba(2, 31, 7, 0.44) 100%
	);
}

/* The theme's inner container is statically positioned, so it needs lifting
   above the scrim or the wash would cover the title too. */
.breadcumb-wrapper > .container {
	position: relative;
	z-index: 1;
}

/* A soft shadow does the rest of the work on the busiest photographs, without
   having to darken the whole image further. */
.breadcumb-wrapper .breadcumb-title,
.breadcumb-wrapper h1,
.breadcumb-wrapper .breadcumb-menu,
.breadcumb-wrapper .breadcumb-menu a,
.breadcumb-wrapper .breadcumb-menu li {
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
