/* Option A — Signature batter identity update: owner-supplied stadium
 * photograph in the home masthead. Loaded after theme.css so these rules
 * win on the cascade; theme.css itself is left untouched so nothing else
 * in it is at risk of being clobbered by this change.
 *
 * Approved treatment: crop toward the right at object-position 50% 47%,
 * grayscale + contrast, luminosity blend, .66 opacity, maroon overlay,
 * soft transparent-to-transparent edge mask. Matches
 * assets/theme/implementation/masthead.css from the design handoff.
 */
.cw-masthead__scene {
	inset: 0 0 0 57%;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000 78%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent, #000 24%, #000 78%, transparent 100%);
}
.cw-masthead__scene img {
	object-position: 50% 47%;
	filter: grayscale(1) contrast(1.15);
	mix-blend-mode: luminosity;
	opacity: .66;
}
.cw-masthead__scene::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #54102b55, #54102b33 45%, #390a1d55);
	content: '';
	pointer-events: none;
}

@media (min-width: 1700px) {
	.cw-masthead__scene { inset-inline-start: calc(50% + 176px); inset-inline-end: calc(50% - 836px); }
}
@media (max-width: 1100px) {
	.cw-masthead__scene { inset-inline-start: 48%; }
}
