/*
Bienvenue dans l’éditeur de CSS personnalisé !

Pour en découvrir le fonctionnement, accédez à la page suivante :
https://wp.me/PEmnE-Bt
*/
/* remove entry meta info from posts at top and bottom */
.entry-meta {
	display: none;
}

footer.entry-footer.responsive-max-width {
	display: none;
}

/* remove featured image from posts */
.single-post img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
	display: none;
}

/* Add a border above and below the menu items / 26375847-hc pj */
#site-navigation {
    border-top: #2147A6 1px solid;
    border-bottom: #2147A6 1px solid;
}

/*Reducing the logo size -26375847-hc - SM*/
.site-logo img {
	width: 50%;
	height: auto;
}

/* Increase menu item size to 1.2em / 26375847-hc pj */
body:not(.fse-enabled) .main-navigation a {
    font-size: 1.2rem;
}

/* -- only the menu item corresponding to the active page to be light blue | DZ-3731861-zen -- */
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
  color: #70d7cd;
  text-decoration: underline;
}
/* KG-27604286-hc */

/* hide navigation under posts KG-27604286-hc */
.single-post .post-navigation {
  display: none;
}

.single-post article {
  margin-bottom: 0;
}
/* KG-27604286-hc */

/* Add footer widget area columns | KG-27604286-hc */
.site-footer .widget-area {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    max-width: 100%;
}
     
.site-footer .widget-area > .widget {
    width: 100%;
    margin: 0;
}
 
.site-footer .widget-area > * {
    max-width: none;
}
 
.site-footer .widget * {
    max-width: 100%;
}

/* Full width footer widget area*/
body:not(.fse-enabled) #colophon {
    max-width: calc(100% - 8px);
    width: 100%;
}
 
@media only screen and (min-width: 560px) {
    body:not(.fse-enabled) #colophon {
        max-width: calc(100% - 64px);
    }
}

/* Footer: add a custom background color  */
body:not(.fse-enabled) #colophon {
  background: #d0d0d0;
  max-width: none;
  padding: 4em 3em;
  justify-content: center;
}
 
/* End - footer columns | KG-27604286-hc */

.element-is-sticky {
   background: white;
   }

/* -- make submenu text size smaller | DZ-3731861-zen -- */
.main-navigation .sub-menu li a {
  font-size: 0.9rem;
}