/* Extend slider images east/west the full width of the page */
.home main > .post-entry {
	padding: 0;
}
html.responsive body.home .container_wrap_first > .container {
	max-width: unset;
}
@media (max-width: 425px) {
	.container .content .entry-content-wrapper {
		padding-left: 0;
		padding-right: 0 !important;
	}
}

/* Make slider flush with the nav and bring the buttons up for a bit of overlap */
html.responsive body.home .container_wrap_first > .container > .content {
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: -60px;
}
@media (max-width: 1425px) {
	html.responsive body.home .container_wrap_first > .container > .content {
		margin-bottom: 0;
	}
}

/* Hide the slider images until slick.js has initialized */
.js-slider img {
	display: none;
}
.js-slider.slick-initialized img {
	display: block;
}

/* Cap image width at 1800px (horizontally center after) and contain within the browser */
html.responsive body.home .container_wrap_first .slick-slide img {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	object-fit: contain;
}

/* Style the prev/next slider arrows */
.slick-arrow {
	z-index: 20;
	width: 50px;
	height: 100px;
	background: rgba(0,0,0, 0.3);
	opacity: 0.5;
	transition: all 0.3s ease-out;
}
.slick-arrow:hover {
	background: rgba(0,0,0, 0.3);
	opacity: 1;
}
.slick-arrow:focus {
	background: rgba(0,0,0, 0.3);
}
.slick-prev { left: 0; }
.slick-next { right: 0; }
