/*	Home page — Featured Content tweaks
	==========================================================================
	The full-width SnapSpots video tile (.featured-video-tile) is a plain block
	sized to the .featured-content content box. The .mosaic rows below it use a
	two-track grid (66.7% + 33.3%) with a 20px column-gap and
	justify-content:center, so each row overflows the content box by 20px — 10px
	on each side. At the breakpoints where the mosaic is a grid (>=961px), widen
	the video tile by the same 20px so every left/right edge lines up with the
	rows below.
*/

@media (min-width: 961px) {
	.featured-video-tile {
		margin-left: -10px;
		margin-right: -10px;
	}
}
