/* On justifie tous les paragraphes */
p {
      /*color: #313332; */
      text-align: justify;
 }

 /* Rajout de siez 120% */
 html {
  font-size: 100%;
  font-family: sans-serif;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}


 /* div {
      width: 100%;
      margin: 0 auto; 
      padding: 0;
   
 } */

 .toto div {
   width: 100%; 
   margin: 0 auto;
   padding: 0 20px;
 }
 

/* La classe 'hover-effect' permettra de créer un effet de zoom quand l'on passera la souris par dessus les elements images enfants */

 .hover-effect {
   display: inline-block;
   overflow: hidden;
   /* optionnel : dimensions fixes */
   max-width: 100%;
   width: 100%;
 }
 
 .hover-effect img {
   display: block;
   width: 100%;
   height: auto;
   transition: transform 0.33s ease-in-out;
   transform: scale(1);
 }
 
 .hover-effect img:hover {
   transform: scale(1.05); /* zoom visuel uniquement */
 }


 /* class display-tags (pour la fonction du même nom). Basé sur Entry footer */

.display-tags {
	/*border-bottom: 1px solid #eee;
	border-top: 1px solid #eee; 
	margin-top: 0.2em; */
	padding: 0.1em 0;
}

.display-tags .cat-links,
.display-tags .tags-links {
	display: block;
	font-size: 11px;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.1818em;
	padding-left: 2.5em;
	position: relative;
	text-transform: uppercase;
}

.display-tags .cat-links + .tags-links {
	margin-top: 1em;
}

.display-tags .cat-links a,
.display-tags .tags-links a {
	color: #333;
}

.display-tags .cat-links .icon,
.display-tags .tags-links .icon {
	color: #767676;
	left: 0;
	margin-right: 0.5em;
	position: absolute;
	top: 2px;
}

/*.display-tags .edit-link {
	display: inline-block;
}*/

/*.display-tags .edit-link a.post-edit-link {
	background-color: #222;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 800;
	margin-top: 2em;
	padding: 0.7em 2em;
	-webkit-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
	white-space: nowrap;
}*/

/*.display-tags .edit-link a.post-edit-link:hover,
.display-tags .edit-link a.post-edit-link:focus {
	background-color: #767676;
}*/

/* Pour l'affichage du nombre de commentaires d'un article (pas utilisé pour l'instant */
.post-comments {
   display: flex;
   align-items: center;
   margin-bottom: 0.5em;
   font-size: 0.9em;
   color: #666;
 }
 
 .post-comments .icon {
   width: 1em;
   height: 1em;
   fill: #999;
   margin-right: 0.3em;
 }

 /* Pour afficher une barre de séparation verticale entre chaque article (pas utilisé pour l'instant) */
 .border-bottom-article {
   border-bottom: 1px solid
 }

/* Étendre la zone de contenu sur les articles */
.single-post-custom #primary {
   width: 100%;
   float: none;
 }
 
 .single-post-custom .wrap {
   max-width: 70%;
   padding-left: 2em;
   padding-right: 2em;
   margin: 0 auto;
 }

 /* Aère un peu le texte des articles */
 .single-post-custom .entry-content {
   font-size: 1.125em;
   line-height: 1.8;
   max-width: 1600px;
   margin: 0 auto;
 }


 /* Override le bloc de style.css du thème
 rajoute des intructions pour avoir la featured image d'article fixe aussi quand on dézoom */
 .single-featured-image-header img {
	display: block;
	margin: auto;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/* footer */
.custom-footer {
  background-color: #334155; /*bleu astra */
  /*background-color: #001B33; /* bleu gedit */
  border-top: 1px solid #eee;
}

.custom-footer .wrap {
	padding-bottom: 1.5em;
	padding-top: 2em;
  width: 100%
}

.custom-footer div div {
  text-align: center;
}

.custom-footer div div a:hover,
.custom-footer div div a:focus {
	opacity: 0.7;
}

/* Footer widgets */

/*.custom-footer .widget-area {
	padding-bottom: 2em;
	padding-top: 2em;
}*/

/* Pour setter la largeur du contenu du site : articles + sidebar ou texte + coms (si on est dans un article)
La valeur settée dans le css du thème est 1000px */
@media screen and (min-width: 48em) {
  .wrap {
    max-width: 1200px;
  }
}

.navigation-top {
	background: #fff;
}

/* Affichage de la source d'un article "revue de presse */
.span-source {
  font-size: 11px;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 2px;
  color: #767676;
  line-height: 1.4;
  display: inline;
  margin-right: 4px;
}

.div-source {
  margin-top: -3px;
}

/* Correctifs pour bug background fixed sur certains browser mobile */
@media screen and (max-width: 768px), (pointer: coarse) {
  .background-fixed .panel-image {
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
  .background-fixed .panel-image {
    background-attachment: scroll !important;
  }
}

@supports (-moz-appearance: none) {
  .background-fixed .panel-image {
    background-attachment: scroll !important;
  }
}

@supports (-webkit-overflow-scrolling: touch) {
  .background-fixed .panel-image {
    background-attachment: scroll !important;
  }
}
/* ------------------------------ */
