/* ================= EN-TETE ================= */
.site-branding {
	padding: 22px 20px 14px;
}

img.site-logo {
	max-width: 240px;
	height: auto;
}

.site-description {
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #63717e;
	margin-top: 10px;
}

/* ================= NAVIGATION ================= */
.main-navigation {
	background: #1a3557;
	box-shadow: 0 1px 12px rgba(26,53,87,0.18);
	padding: 0 24px;
}

.main-navigation ul.nav-menu {
	text-align: center;
}

.main-navigation li {
	margin: 0;
}

.main-navigation li:before,
.main-navigation li:after {
	display: none;
}

.main-navigation a {
	display: inline-block;
	padding: 15px 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #ffffff;
	border-bottom: 2px solid transparent;
	transition: border-color .18s ease;
}

.main-navigation a:hover,
.main-navigation a:focus {
	color: #ffffff;
	border-bottom-color: #bca9da;
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	border-bottom-color: #ffffff;
}

/* ================= MOBILE ================= */
@media (max-width: 782px) {
	.site-branding {
		padding: 16px 16px 10px;
	}
	
	img.site-logo {
		max-width: 180px;
	}
	
	.site-description {
		font-size: 11px;
		margin-top: 8px;
	}
	
	.main-navigation {
		padding: 0;
	}
	
	.main-navigation .menu-toggle {
		display: block;
		width: 100%;
		min-height: 48px;
		background: transparent;
		border: 0;
		color: #ffffff;
		font-size: 13px;
		font-weight: 600;
		letter-spacing: .12em;
		text-transform: uppercase;
	}
	
	.main-navigation ul.nav-menu li {
		display: block;
		border-top: 1px solid rgba(255,255,255,0.15);
	}
	
	.main-navigation ul.nav-menu a {
		display: block;
		padding: 14px 20px;
		text-align: left;
		border-bottom: 0;
	}
}

/* ================= TITRES DE PAGE ET D'ARTICLE ================= */
.entry-title,
.entry-title a,
.page-title {
	color: #1a3557;
}

.entry-title a:hover {
	color: #3a5b82;
}

/* ================= RYTHME DU TEXTE ================= */
.entry-content > p,
.entry-summary > p,
.entry-content > ul > li,
.entry-content > ol > li {
	line-height: 1.8;
}

.entry-content > p {
	margin-bottom: 26px;
}

/* titres dans le contenu, pour les pages non reprises une a une */
.entry-content > h2 {
	color: #1a3557;
	font-weight: 700;
}

.entry-content > h3,
.entry-content > h4 {
	color: #1a3557;
}

/* ================= LIENS DANS LE CONTENU ================= */
.entry-content a {
	color: #1a3557;
}

.entry-content a:hover {
	color: #3a5b82;
}