/*remove padding from header hc-22369447*/
@media only screen and (min-width: 782px) {
	.header {
		padding-top: 8px;
		padding-bottom: 4px;
	}
}
	/* add background color to full navigation area on larger screens | #22511366-hc KG */
	@media screen and (min-width: 560px) {
	.navigation {
		background: #3779a2;
	}
}

/*make logo smaller on mobile | RN-22484907-hc*/
@media screen and (max-width: 500px) {
	.header .site-logo-link img {
		height: auto;
		max-width: 65%;
	}
}

/*add line under header on mobile | RN-3128390-zen*/
@media (max-width: 600px) {
	.header {
		border-bottom: 2px solid #000000;
		padding: 10px 0;
	}
}

/* Hide social media bar on smaller screens / 22486013-hc mr */
@media screen and ( max-width: 850px ) {
	nav.top-nav {
		display: none;
	}
}

/* Logo - shift up on wider screens / 22486013-hc kp */
@media screen and ( min-width: 851px ) {
	.site-logo-link {
		margin-top: -50px;
	}
}

/* Hide social media bar on smaller screens / 22486013-hc mr */
@media screen and ( max-width: 850px ) {
	nav.top-nav {
		display: none;
	}
}

/* Make content full-wide except on  homepage MRFX-HC-22549801 */
body:not(.home) .content {
	width: 100%;
	background-color: white;
	padding-right: 2%;
}

body:not(.home) .sidebar {
	display: none;
}

/*--- removes margin from bottom of logo on small screen / #22549801-HC-PK ---*/
@media (max-width: 850px) {
	.site-logo-link {
		margin-bottom: 0;
	}
}

/*22623007-hc set sidebar and main background to white*/
body, .sidebar, .wrapper:after {
	background: white;
}

/* move top menu to right side of header on larger screens | #3155536-zen eD */
@media screen and (min-width: 850px) {
	.top-nav .section-inner {
		display: grid;
		justify-content: flex-end;
		grid-template-areas: social-menu top-navigation;
	}
	
	.top-nav .section-inner .header-top-menu {
		grid-area: top-navigation;
	}
	
	.top-nav .section-inner .social-menu {
		grid-area: social-menu;
	}
}

/* set top menu link color to red | #3155536-zen eD */
.header-top-menu > li > a {
	color: #ff0000;
}

/* Top menu - desktop / 22668985-HC (MI) */
@media only screen and (min-width: 850px) {
	.top-nav .section-inner .header-top-menu {
		position: relative;
		top: 40px;
	}
}

/* change color of verse block | #23007117-hc */
pre.wp-block-verse {
	background-color: white;
	border: 0;
	font-family: inherit;
	font-size: 110%;
	line-height: 2;
}