
/* Hide the homepage title */ 
.home h1 { 
display: none; 
}

.site-title a{
	color: #902B27;
	font-size: 24pt;
}

.entry-title {
    font-size: 24pt; 
	color: #f16522;
	margin-top: 15px
}

.site-title a:hover{
	color: #f16522
}

.main-navigation ul li {
    margin-right: .5px; /* Decrease this value to reduce spacing */
}

.main-navigation .primary-menu a{
	color:#f16522
}

.main-navigation .primary-menu a:hover{
	color:#0e2455
}

.main-navigation .primary-menu .current-menu-item a{
	color: #0e2455;
	text-decoration:none !important; 
  border-bottom: none !important;	
}

.main-navigation .primary-menu .sub-menu a {
  color: #f16522;
  text-decoration: none !important
}


.main-navigation .primary-menu .sub-menu a:hover {
  color: #0e2455;
  text-decoration: none;
}

	
h1{
		color: #902B27;
	}

	h2,h3{
		color:#222222;
	}
	
a{
	color: #f16522;
	text-decoration: none !important;
	}
a:hover{
	color: #f16522;
	text-decoration: none !important;
	}


.site-branding .custom-logo-link {
		grid-area: site-logo;
	}
	 
	.site-branding .site-title {
		grid-area: site-title;
		margin-bottom: .5em;
		align-self: center;
	}

/* remove padding before content on home page | 31443469-hc eD */
.page .hentry {
	padding-top: 0;
}


/* add margin to paragraph blocks inside a column with background color | 32672608-hc e D*/
.wp-block-column.has-background p {
	margin-left: .9em;
	margin-right: .6em;
}
/* Increase width of content / 34665219-hc (BM) */
.site-content-wrapper {
    max-width: 65%;
}
/* End Increase width of content / 34665219-hc (BM) */
 hide page titles | 31440607-hc */
.entry-title {
	display: none;
}


/* adjust site branding on larger screens | 40885792-hc MQ */
@media screen and (min-width: 560px) {
	.site-branding {
		display: grid;
		grid-template-areas:
			"site-logo site-title";
		align-items: center;
		align-content: center;
		column-gap: 1em;
	}
	
	.site-branding .custom-logo-link {
		grid-area: site-logo;
	}
	 
	.site-branding .site-title {
		grid-area: site-title;
		margin-bottom: .5em;
		align-self: center;
	}



