:root {
	
	--color-dark-red:  #220909;
	--color-lacquer-red:  #9C2A2A;
	--color-purple-red: #912A4F;
 	--color-dull-violet: #763769;
 	--color-purplish-blue: #534371;
 	--color-slate-blue: #364869;
	--color-dark-steel-blue: #2F4858;
	--color-white: #fff;
	--color-grey-3: #333333;
	--color-grey-6: #666666;
	
	--primary-color: var(--color-lacquer-red);
  --secondary-color: var(--color-dark-steel-blue);
  --title-color: var(--color-grey-3);
  --text-color: var(--color-grey-6);

	--xl-margin: 150px;
	--lg-margin: 80px;
	--md-margin: 0px;
	--sm-margin: 10px;
	--xs-margin: 15px;
	
	--md-width: 700px;
	--lg-width: 800px;
	--xl-width: 800px;
	--photo-ratio: 1.538461538461538;

	--margin-padding: 16px;
	--max-content-width: 800px;
  --content-width: calc(100% - 2 * var(--margin-padding));

}



@media screen and (min-width: 768px) and (max-width: 991px) {
    :root {
		  --content-width: calc(100% - 4 * var(--margin-padding));
    }
}
@media (min-width: 991px) {
    :root {
        --content-width: var(--max-content-width);
    }
}



::selection { background-color: var(--primary-color); color: #fff; }

* { margin: 0; padding: 0; box-sizing: border-box; appearance:none; -moz-appearance: none; -webkit-appearance:none; -webkit-tap-highlight-color: transparent; /*outline: 1px solid #00F;*/  }

html { font-family: system-ui, sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: system-ui, sans-serif; color: var(--text-color); font-size: 16px; line-height: 100%; display: flex; flex-direction: column; min-height: 100vh; }
a, a:hover { text-decoration: none; color: var(--color-text); }
img { display: block; width: 100%; max-width: 100%; }
.atc:hover, .atcb:hover { cursor: pointer; }
.relative { position: relative; }

.container { width: 100%;  }
@media (max-width: 767px) {
	.container { width: 100%; margin: 0; }
}	
@media (min-width: 768px) and (max-width: 991px) {
	.container { width:100%; margin-right: auto; margin-left: auto; }
}
@media (min-width: 992px) and (max-width: 1199px) {
	.container { max-width: 970px; margin-right: auto; margin-left: auto; }
}
@media (min-width: 1200px) {
	.container { max-width: 1140px; margin-right: auto; margin-left: auto; }
}


.body__stop-scrolling { overflow: hidden; }


.header { padding-top: 16px; position: relative;  }
.header.black { background-color: #000; }
.header.white { background-color: #fff; }
.header.blue { background-color: var(--color-dark-steel-blue); }

.header-wrapper { display: flex; flex-direction: column; width: calc(100% - 16px); margin: 0 auto; overflow: hidden; }

.header-top { display: flex; flex-direction: row; justify-content: space-between; width: 100%; height: 64px; position: relative; }

.header-nav { display: flex; flex-direction: row; justify-content: space-between; width: 100%; position: relative; }

article { background-color: var(--color-white); }
.logo { color: #fff; font-weight: 900; line-height: 1; transition: color 250ms; }	
.logo:hover { color: var(--primary-color); }


@media screen and (max-width: 767px) {
	.header-wrapper { position: relative; overflow: hidden; display: flex; flex-grow: 1; }
	.header-nav { flex-wrap: wrap; }
	.logo { font-size: 24px; }	
	.nav-menu ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px;  position: relative; }
	.nav-menu li {  line-height: 30px; padding: 4px 8px; text-align: center; display: inline-block; width: auto; }
	.nav-menu li a { line-height: 32px; font-size: 14px;  text-transform: uppercase; font-weight: 400; }
	.nav-menu li.active { border-bottom: 5px solid var(--primary-color); }
	.nav-menu li.active a { color: var(--primary-color); }
	
	.nav-menu.primary-menu { width: 100%; text-align: center; margin-bottom: 16px;  }
	.nav-menu.secondary-menu { width: 100%; }
}

@media screen and (min-width: 768px) {
	.header-wrapper { position: relative; overflow: hidden; display: flex; flex-grow: 1; }
	.logo { font-size: 32px;  }	
	.nav-menu ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 8px;  position: relative; }
	.nav-menu li {  line-height: 30px; padding: 4px 8px; text-align: center; display: inline-block; width: auto; }
	.nav-menu li a { line-height: 32px; font-size: 16px;  text-transform: uppercase; font-weight: 400; }
	.nav-menu li.active { border-bottom: 5px solid var(--primary-color); }
	.nav-menu li.active a { color: var(--primary-color); }

}


.header.black .logo {  color: #fff;  }
.header.black .nav-menu li { border-bottom: 5px solid #000; }
.header.black .nav-menu li a { color: #fff; }
.header.black	.nav-menu li.active { border-bottom: 5px solid var(--primary-color); }
.header.black	.nav-menu li.active a { color: var(--primary-color); }

.header.white .logo { color: var(--color-dark-red); }
.header.white .nav-menu li { border-bottom: 5px solid #fff; }
.header.white .nav-menu li a { color: var(--color-dark-red); }
.header.white	.nav-menu li.active { border-bottom: 5px solid var(--primary-color); }
.header.white	.nav-menu li.active a { color: var(--primary-color); }

.header.blue .logo { color: #fff; }
.header.blue .nav-menu li { border-bottom: 5px solid var(--color-dark-steel-blue); }
.header.blue .nav-menu li a { color: #fff; }
.header.blue	.nav-menu li.active { border-bottom: 5px solid var(--primary-color); }
.header.blue	.nav-menu li.active a { color: var(--primary-color); }


@media (min-width: 768px) and (max-width: 991px) {
	.nav-menu li { padding: 4px 5px; }
	.nav-menu li a { line-height: 30px; font-size: 12px; }
}


.dark { background-color: var(--color-dark-red); }
.dark-blue { background-color: var(--color-dark-steel-blue); }

.page-header { width: var(--content-width); margin: 32px auto; }

/*
 * LISTE D'ARICLES
 */

.articles-list { width: 100%; margin: 32px auto; padding: 0; display: flex; flex-direction: row; align-items: stretch; justify-content: space-between; }
.article-list__wrap { flex-wrap: wrap; }
.article-list__nowrap { flex-wrap: nowrap; }

.articles-list li { display: block; width: calc(33% - 16px); overflow: hidden; }

.related-articles { display: block; width: 100%; overflow-x: auto; padding-bottom: 16px; -webkit-overflow-scrolling: touch; scrollbar-width: thin;  scrollbar-color: var(--primary-color) transparent; }
.related-articles--title { display: block; width: 100%; color: var(--title-color); font-weight: 900; font-size: 18px; line-height: 1; text-transform: uppercase; letter-spacing: 2px; margin: 64px 0 8px 0; text-align: center;}
.related-articles-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px; /* Espacement entre les éléments */
    width: max-content; /* Permet au conteneur de s'étendre selon le contenu */
}

.related-articles li { flex: 0 0 auto; }

.articles-list--image { width: 100%;  height: auto; overflow: hidden; border-radius: 24px; }
.articles-list picture { width: 100%; }
.articles-list img { width: 100%; height: auto; object-fit: cover; transition: all 250ms; }
.articles-list--title { display: block; width: 100%; padding: 8px 0; font-size: 18px; line-height: 1.3; color: var(--title-color); font-weight: 700; letter-spacing: -0.5px; transition: color 250ms; }
.articles-list a:hover { color: var(--primary-color); }
.articles-list li:hover { cursor: pointer; }
.articles-list li:hover img { transform: scale(1.05); opacity: 0.8; }
.articles-list li:hover a { color: var(--primary-color);  }
.articles-list p { font-size: 15px; line-height: 1.3; padding-bottom: 16px; }

.related-articles .articles-list { gap: 32px; }

@media (max-width: 991px) {
	.articles-list { width: var(--content-width); }
	.articles-list li { width: calc(50% - 16px); }
}
@media (max-width: 767px) {
	.articles-list a { font-size: 16px; }
	.articles-list--image { border-radius: 16px; }
	.articles-list p { font-size: 14px; }
	.related-articles { overflow-x: scroll; }
}

@media (min-width: 768px) and (max-width: 991px) {
	.nav-menu li { padding: 4px 5px; }
	.nav-menu li a { line-height: 30px; font-size: 12px; }
}



/*
 * CONTENT
 */

.page-title { width: var(--content-width); margin: 32px auto; line-height: 1.1; font-weight: 900; color: var(--title-color); text-align: left; }

.article-image { width: 100%; height: 600px; overflow: hidden; position: relative; }
.article-image img { width: 100%; height: 600px; object-fit: cover; }
.article-image-back { width: 100%; height: 600px; overflow: hidden; position: relative; background: #000; }
.article-image-back img { display: block; width: 923px; height: 600px; margin: 0 auto; object-fit: cover; }
.article-title { display: block; width: var(--content-width); position: absolute; left: 50%; transform: translateX(-50%); bottom: 50px; font-size: 64px; line-height: 1.1; font-weight: 900; color: #fff; text-align: left; text-shadow: 0px 0px 9px #000; }

.article-content { width: 100%; counter-reset: elements-list; /*padding: 64px 0;*/ }
.article-content h2 { display: block; width: var(--content-width); margin: 64px auto 16px auto; color: var(--title-color); font-weight: 900; font-size: 32px; line-height: 1.1; }
.article-content h3 {display: block; width: var(--content-width); margin: 32px auto 10px auto; color: var(--title-color); font-weight: 900; font-size: 24px; line-height: 1.1;  }
.article-content p { display: block; width: var(--content-width); margin: 12px auto; text-align: left; color: var(--text-color); font-size: 17px; line-height: 1.7; }
.article-content a { color: var(--text-color); text-decoration: none; border-bottom: 2px solid var(--primary-color); transition: all 250ms; font-weight: 700; }
.article-content a:hover{ color: var(--primary-color); border-bottom: 2px solid var(--primary-color); }

.article-content p.excerpt { font-size: 20px; color: #666; font-weight: 700; }
.article-content p.excerpt a { border: none; }
.article-content p.excerpt a:hover { color: #666; }

.article-content ul { margin-bottom: 16px; padding: 0; list-style-type: none; } 
.article-content ol { margin-bottom: 16px; padding: 0 0 0 45px; } 
.article-content ul li {  display: block; width: var(--content-width); margin: 0 auto 12px auto; position: relative; padding-left: 16px; font-size: 17px; line-height: 1.7; }
.article-content ul li:before { width: 13px;
height: 13px;
padding: 2px 10px 0 0; content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' style='fill:rgb(86,86,86);'><path d='M115.452,99.004L51.223,34.594C48.048,31.41 48.056,26.247 51.239,23.072L62.777,11.567C65.961,8.392 71.124,8.399 74.299,11.583L155.883,93.072C157.519,94.704 158.317,96.861 158.274,99.004C158.317,101.147 157.519,103.304 155.883,104.936L74.299,186.425C71.124,189.609 65.961,189.616 62.777,186.441L51.239,174.936C48.056,171.761 48.048,166.599 51.223,163.415L115.452,99.004Z' /></svg>"); position: absolute; left: 0; top: 0; }

.article-content q { font-style: italic; }
.article-content q:before { content: '\0000AB'; padding-right: 0.2em; }
.article-content q:after { content: '\0000BB'; padding-left: 0.2em; }

.article-content figure { display: block; width: var(--content-width); margin: 32px auto; }
.article-content img { display: block; width: 100%; height: auto; border-radius: 24px; }
.article-content figcaption { font-size: 16px; line-height: 1.6; width: var(--content-width); margin: 12px auto 32px auto; font-style: italic; color: #999; font-weight: 700; }
.article-content figcaption:after { content: ''; display: block; width: 100px; height: 2px; background: var(--primary-color); margin-top: 12px; }


.article-content .photo-double { display: flex; align-items: center; justify-content: space-between; width: var(--content-width); margin: 32px auto; }
.article-content .photo-item { width: calc(50% - 8px); }
.article-content .photo-double figure { width: 100%; }


.counters { counter-reset: elements-list; }
.counter::before { counter-increment: elements-list; content: counter(elements-list); background: var(--title-color); color: #fff; padding: 0 7px; border-radius: 3px; margin-right: 10px; }

@media screen and (max-width: 767px) {
	.article-content p { font-size: 17px; line-height: 1.6; }
	.article-content p.excerpt { font-size: 17px; line-height: 1.6; }
	.article-content img { display: block; width: 100%; height: auto; border-radius: 16px; }
}

@media screen and (max-width: 767px) {
	.article-image, .article-image-back { height: 400px; }
	.article-image img, .article-image-back img { height: 400px; }
	.article-title, .page-title { font-size: 32px; letter-spacing: -1px; }
}
@media screen and (min-width: 768px) {
	.article-title, .page-title { font-size: 64px; letter-spacing: -1px; }
}
@media screen and (min-width: 1200px) {
	.article-image { height: 800px;}
	.article-image img { height: 800px; }
	.article-image-back { height: 800px; }
	.article-image-back img { width: 1231px; height: 800px; }
}

.article-pathway { width: var(--content-width); overflow: hidden; clear: both; margin: 0 auto; /*order: 4;*/ display: flex; align-items: center; justify-content: center; }
/*
.bcrumbs { padding: 30px 0 30px 0; margin: 0; list-style: none;  }
.bcrumbs li { list-style: none; float: left; margin-right: 20px; font-size: 12px; line-height: 12px; color: #bbbbbb; position: relative; }
.bcrumbs li a { color: #bbbbbb; transition: color 250ms; }
.bcrumbs li a:hover { color: #DD290F; }
.bcrumbs li:after { content: ">"; position: absolute; top: 1px; right: -13px; font-size: 11px; }
.bcrumbs li:last-child:after { display: none; }
*/

.bcrumbs { padding: 30px 0 30px 0; margin: 0; list-style: none; display: flex;  align-items: center;  gap: 4px;  width: 100%; }
.bcrumbs li { white-space: nowrap; font-size: 12px; line-height: 12px; color: #bbbbbb; }
.bcrumbs li a:hover { color: #DD290F; }
.bcrumbs li:not(:last-child)::after { content: "›";  margin-left: 4px; }

@media screen and (max-width: 767px) {
  .bcrumbs li:not(:first-child):not(:nth-last-child(-n+2)) {
    display: none;
  }
  .bcrumbs li:first-child ~ li ~ li:nth-last-child(2)::before {
    content: "…›";
    margin-right: 4px;
    letter-spacing: 4px; 
  }
  
/*	.bcrumbs li:not(:first-child):not(:nth-last-child(-n+2)) { display: none; }
  .bcrumbs li:nth-last-child(2)::before { content: "…›"; letter-spacing: 4px; margin-right: 4px; }*/
  
}



.table-of-content { border: 4px solid #eee; border-radius: 3px; position: relative; }
.table-of-content ul { list-style: none; margin-bottom: 5px; }
.table-of-content--title:before { content: "Sommaire de l'article"; display: block; font-size: 16px; text-transform: uppercase; color: #333; font-weight: 700; }
.table-of-content ul.primary { margin-top: 15px; }
.table-of-content ul li { font-size: 14px; margin: 0 0 5px 0; padding: 0; }
.table-of-content ul li:before { content:""; position: absolute; left: 0; top: 0; width: 10px; height: 10px; }
.table-of-content ul li ul { margin-left: 16px; }
.table-of-content a { border: none !important; font-weight: 400; color: #333 !important; transition: none; }
.table-of-content a:hover { text-decoration: underline; }

.article-toc--toggle { display: block; position: absolute; width: 30px; height: 30px; top: 10px; right: 10px; pointer-events: none; }
.article-toc--toggle span { display: block; background-color : rgba(0, 0, 0, 0); width: 30px; height: 3px; position: absolute; right: 0; top: 50%; bottom: auto; left: auto; }
.article-toc--toggle span::before,
.article-toc--toggle span::after { content: ""; width: 61%; height: 100%; transition: transform 0.3s ease-in-out; background-color : #999; position: absolute; }
.article-toc--toggle span::before { top : 0; left: 0; transform : rotate(225deg);}
.article-toc--toggle span::after { top : 0; right: 0; transform : rotate(135deg); }
.article-toc--toggle.is-clicked span { background-color: rgba(0, 0, 0, 0); transition: all .1s; }
.article-toc--toggle.is-clicked span::before { transform : rotate(135deg); }
.article-toc--toggle.is-clicked span::after { transform : rotate(225deg); }

@media screen and (max-width: 575px) {
	.table-of-content { padding: 15px; width: calc(100% - 30px); margin: 48px auto 16px auto;  }
	.table-of-content ul.primary { display: none; }
	.table-of-content ul.primary.is-open { display: block; }
	.article-toc--toggle { display: block; }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
	.table-of-content { padding: 15px; width: calc(100% - 30px); margin: 48px auto 16px auto; }
	.table-of-content ul.primary { display: none; }
	.table-of-content ul.primary.is-open { display: block; }
	.article-toc--toggle { display: block; }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	.table-of-content { padding: 15px; width: calc(var(--md-width) - 30px); margin: 48px auto 16px auto;  }
	.article-toc--toggle { display: none; }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
	.table-of-content { padding: 15px; width: calc(var(--lg-width) - 50px); margin: 48px auto 16px auto;  }
	.article-toc--toggle { display: none; }
}
@media screen and (min-width: 1200px) {
	.table-of-content { padding: 15px; width: calc(var(--xl-width) - 50px); margin: 48px auto 16px auto; }
	.article-toc--toggle { display: none; }
}



.article-content blockquote { display: block; position: relative; font-size: 24px; line-height: 1.5; color: rgba(47,72,88,0.5); font-weight: 900; letter-spacing: 1px; margin: 64px auto;  }	
.article-content blockquote:before { content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' style='fill:rgba(47,72,88,0.5);'><g><path d='M15.493,119.549L67,36L98,36L65.22,114.48C71.842,120.425 76,128.988 76,138.5C76,157.437 61.213,171 43,171C16.787,171 10,158.437 10,138.5C10,131.867 12.022,124.695 15.493,119.549Z' /><g transform='matrix(1,0,0,1,94,0)'><path d='M15.493,119.549L67,36L98,36L65.22,114.48C71.842,120.425 76,128.988 76,138.5C76,157.437 61.213,171 43,171C16.787,171 10,158.437 10,138.5C10,131.867 12.022,124.695 15.493,119.549Z' /></g></g></svg>"); position: absolute; }
.article-content blockquote:after { content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' style='fill:rgba(47,72,88,0.5);'><g><g transform='matrix(-1,0,0,-1,201,203.5)'><path d='M15.493,119.549L67,36L98,36L65.22,114.48C71.842,120.425 76,128.988 76,138.5C76,157.437 61.213,171 43,171C16.787,171 10,158.437 10,138.5C10,131.867 12.022,124.695 15.493,119.549Z' /></g><g transform='matrix(-1,0,0,-1,107,203.5)'><path d='M15.493,119.549L67,36L98,36L65.22,114.48C71.842,120.425 76,128.988 76,138.5C76,157.437 61.213,171 43,171C16.787,171 10,158.437 10,138.5C10,131.867 12.022,124.695 15.493,119.549Z' /></g></g></svg>"); position: absolute; }
.article-content blockquote a { color: rgba(47,72,88,0.5) !important; font-weight: 900 !important; letter-spacing: 1px; border: none !important; }
.article-content blockquote strong { font-weight: 900 !important; }
.article-content blockquote em { font-weight: 900 !important; }
.article-content blockquote .author { display: block; clear: both; font-weight: 500; font-size: 15px; font-style: italic; letter-spacing: 0; color: rgba(47,72,88,0.5); }
.article-content blockquote .author:before { content:'\002014'; padding-right: 10px; }
@media screen and (max-width: 767px) {
	.article-content blockquote { width: calc(var(--content-width) - 120px); font-size: 18px; }
	.article-content	blockquote:before { left: -60px; top: -30px; width: 50px; height: 50px;  }
	.article-content blockquote:after { right: -60px; bottom: -30px; width: 50px; height: 50px; }
	.article-content blockquote .author { font-size: 14px; }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	.article-content blockquote { width: calc(var(--content-width) - 130px); }
	.article-content blockquote:before { left: -65px; top: -30px; width: 60px; height: 70px; }
	.article-content blockquote:after { right: -65px; bottom: -30px; width: 60px; height: 60px; }
	.article-content blockquote .author { font-size: 15px; }
}
@media screen and (min-width: 992px) {
	.article-content blockquote { width: calc(var(--content-width) - 160px); }
	.article-content blockquote:before { left: -80px; top: -30px; width: 70px; height: 70px; }
	.article-content blockquote:after { right: -80px; bottom: -30px; width: 70px; height: 70px; }
}



.article-content .see-also { display: block; width: var(--content-width); margin: 32px auto; min-height: 70px; overflow: hidden; background-color: #f5f5f5; padding: 16px 8px; border-radius: 8px; position: relative; }
.article-content .see-also img  { display: block; width: 100px; height: 100px; height: 65px; position: absolute; border-radius: 5px; top: 20px; left: 8px; object-fit: cover; opacity: 1; transition: opacity 250ms; }
.article-content .see-also--title { width: calc(100% - 120px); margin: 0 0 0 120px; /*min-height: 80px;*/ display: block; line-height: 1; }
.article-content .see-also--title::before { content: "Pour aller plus loin"; display: block; color: var(--text-color); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 300; }
.article-content .see-also--title a { font-size: 18px; line-height: 1.3;  font-weight: 700; color: var(--title-color); transition: color 250ms; border: none; }
.article-content .see-also--body { display: inline-block; width: calc(100% - 130px); margin: 4px 0 0 120px; color: var(--text-color); font-size: 14px; line-height: 1.4; }

@media screen and (max-width: 575px) {
	.article-content .see-also img  { width: 80px; height: 52px; }
	.article-content .see-also--title { width: calc(100% - 96px); margin-left: 96px; margin-bottom: 16px; }
	.article-content .see-also--title a	{ font-size: 16px; line-height: 1.1; }
	.article-content .see-also--body { display: block; clear: both; font-size: 14px; line-height: 1.2; width: 100%; margin: 0; }
}


/*
.article-content .see-also { display: block; width: var(--content-width); margin: 32px auto; min-height: 120px; overflow: hidden; background-color: rgba(76,37,69,0.5); padding: 10px; border-radius: 16px; position: relative; }
.article-content .see-also img  { display: block; width: 100px; height: 100px; position: absolute; border-radius: 5px; top: 10px; left: 15px; object-fit: cover; opacity: 1; transition: opacity 250ms; }
.article-content .see-also--title { width: calc(100% - 130px); margin: 0 0 0 120px; height: auto; display: block; }
.article-content .see-also--title::before { content: "Pour en savoir plus"; display: block; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 300; }
.article-content .see-also--title a { font-size: 22px; line-height: 1.3;  font-weight: 700; color: #fff; transition: color 250ms; border: none; }
.article-content .see-also--body { display: inline-block; width: calc(100% - 130px); margin: 8px 0 0 120px; color: #fff; font-size: 14px; line-height: 1.4; }

@media screen and (max-width: 575px) {
	.article-content .see-also img  { width: 80px; height: 80px; }
	.article-content .see-also--title { height: 90px; width: calc(100% - 96px); margin-left: 96px;}
	.article-content .see-also--body { display: block; clear: both; font-size: 14px; width: 100%; margin: 0; }
}
*/



.articles-sitemap-intro { display: block; width: var(--content-width); margin: 12px auto; text-align: left; font-size: 20px; line-height: 1.7; color: #666; font-weight: 700; }

.articles-sitemap { width: 100%; display: flex; flex-flow: row wrap; justify-content: space-between; margin-left: auto; margin-right: auto; }
.articles-sitemap--item-box { width: calc(33.33% - 16px); padding: 16px 0; }
.articles-sitemap--item-box img { width: 100%; height: auto; transition: opacity 250ms; }
.articles-sitemap--item-title { width: 100%; font-size: 16px; font-weight: 700; }

.articles-sitemap--item-text { font-size: 13px; color: #666; font-style: italic; line-height: 1.2; }
.articles-sitemap--item-list { list-style: none; margin: 0; padding: 0; }
.articles-sitemap--item-list li { font-size: 14px; line-height: 1; margin: 8px 0; }
.articles-sitemap--item-list a { color: #333; text-decoration: none; }
.articles-sitemap--item-list a:hover { text-decoration: underline; }

@media screen and (max-width: 575px) {
	.articles-sitemap {width: var(--content-width); }
	.articles-sitemap--title { font-size: 1.5rem; line-height: 1.2; margin: 2rem 0 0.4rem 0; }
	.articles-sitemap--text { font-size: 1rem; margin-bottom: 1rem; }
	.articles-sitemap--item-box { width: 100%; padding: 0; margin-bottom: 2rem; }
	.articles-sitemap--item-title { width: 100%; font-size: 1rem; margin-bottom: 0.4rem; }
	.articles-sitemap--item-text { font-size: 0.9rem; line-height: 1.2; margin-bottom: 0.4rem; }
	.articles-sitemap--item-list li { font-size: 0.9rem; line-height: 1; margin: 0.5rem 0; }
}

@media screen and (min-width: 575px) and (max-width: 991px) {
	.articles-sitemap {width: var(--content-width); }
	.articles-sitemap--item-box { width: calc(50% - 16px); }
}





/*
 * PANELS
 */


.search-today { width: 100%; overflow: hidden; margin: 64px 0; }
.search-today--text {  width: var(--content-width); margin: 32px auto; font-size: 16px; line-height: 1.7; color: var (--text-color); text-align: center; padding-bottom: 24px; }
.search-today--text a { border-bottom: 2px solid var(--primary-color); }
.search-today-form { width: var(--content-width); margin: 32px auto; position: relative; display: flex; gap: 12px; background: #fff; box-shadow: 0 0 30px rgba(0,0,0,0.3); border: 8px solid #fff; border-radius: 60px; overflow: hidden; }


.search-result { width: var(--content-width); margin: 32px auto; }
.search-result ul { list-style: none; margin: 0; padding: 0; }
.search-result li { display: flex; display: flex; justify-content: space-between; margin-bottom: 16px; background: #f5f5f5; border-radius: 16px; padding: 16px; transition: all 250ms;  }
.search-result--image { width: 120px; }
.search-result--image img { display: block; width: 100%; height: auto; border-radius: 4px; transition: opacity 250ms; }
.search-result--body { width: calc(100% - 152px); }
.search-result--body a { display: block; width: 100%; color: var(--title-color); font-size: 18px; font-weight: 700; line-height: 1.3; transition: color 250ms; }
.search-result--body p { display: block; width: 100%; color: var(--text-color); font-size: 16px; line-height: 1.3; margin-bottom: 0px; }

.search-result li:hover { cursor: pointer; box-shadow: 0 0 30px rgba(0,0,0,0.3); }
.search-result li:hover a { color: var(--primary-color); }

@media screen and (max-width: 575px) {
	.search-result--image { width: 100px; }
	.search-result--body { width: calc(100% - 124px); }
}


.search-panel { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2000; visibility: hidden;  }
.search-panel.active { pointer-events: auto; visibility: visible; }
.search-panel-circle { position: absolute; top: 20px; right: 20px; width: 0; height: 0; border-radius: 50%; background: var(--color-dark-steel-blue); transform: translate(50%, -50%); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.search-panel.active .search-panel-circle { width: 300vmax; height: 300vmax; top: 50%; right: 50%; }
.search-panel-content { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 0 40px 0; opacity: 0; transition: opacity 0.3s ease 0.3s; z-index: 1; }
.search-panel.active .search-panel-content { opacity: 1; }
.search-panel-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; padding: 8px; background: none; border: none; cursor: pointer; color: var(--color-white); transition: color 0.2s; z-index: 2; }
.search-panel-close:hover { color: var(--color-primary); }
.search-panel-close svg { width: 100%; height: 100%; }
.search-panel-title { display: block; width: var(--content-width); margin: 0 auto; color: rgba(255, 255, 255, 0.8); font-size: 32px; font-weight: 900; text-align: center; margin-bottom: 48px; }
.search-panel form { display: block; width: var(--content-width); margin: 0 auto; }
.search-panel-form { width: 100%; position: relative; display: flex; gap: 12px; background: #fff; box-shadow: 0 0 30px rgba(255,255,255,0.3); border: 8px solid #fff; border-radius: 60px; overflow: hidden; }
.search-input { flex: 1; padding: 16px 24px; font-size: 18px; border: none; border-radius: 50px; outline: none; transition: border-color 0.3s; }
.search-submit { width: 56px; height: 56px; padding: 12px; background: var(--primary-color); border: none; border-radius: 50%; color: white; cursor: pointer; transition: all 0.3s; flex-shrink: 0; }
.search-submit:hover { background-color: var(--color-dull-violet); }
.search-submit svg { width: 100%; height: 100%; }
body.search-open { overflow: hidden; }

@media screen and (max-width: 575px) {
	.search-panel-content {}
	.search-panel form { width: calc(100% - 32px); }	
	.search-panel-title { font-size: 24px; margin-bottom: 24px; }	
  .search-input { font-size: 16px; padding: 12px 20px; }
  .search-submit { width: 48px; height: 48px; }
}



.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 1000; }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-panel { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100%; background: #ffffff; box-shadow: -2px 0 16px rgba(0, 0, 0, 0.2); transition: right 0.3s ease; z-index: 1001; display: flex; flex-direction: column; }
.cart-panel.active { right: 0; }
.cart-panel-header { display: flex; align-items: center; padding: 20px; border-bottom: 1px solid #eee; position: relative; }
.cart-panel-close { width: 32px; height: 32px; padding: 4px; background: none; border: none; cursor: pointer; color: #333; transition: color 0.2s; flex-shrink: 0; }
.cart-panel-close:hover { color: var(--color-lacquer-red); }
.cart-panel-close svg { width: 100%; height: 100%; }
.cart-panel-header-title { margin: 0 0 0 16px; font-size: 20px; font-weight: 700; color: var(--color-dark-steel-blue); }
.cart-panel-content { flex: 1; overflow-y: auto; padding: 20px; }

.cart-panel-empty { width: 100%; height: 300px; padding-top: 100px; text-align: center; font-size: 18px; font-weight: 700; color: var(--color-dark-steel-blue); opacity: 0.5; }
.cart-panel-actions { display: block; width: 100%; padding: 16px 0; text-align: center; }
.cart-panel-button-shop { background: var(--primary-color); border-radius: 50px; color: var(--color-white); font-size: 16px; padding: 16px 16px; text-align: center; transition: all 250ms; cursor: pointer; }
.cart-panel-button-shop:hover { background: var(--color-purplish-blue); color: var(--color-white); }

@media screen and (max-width: 575px) {
	.cart-panel { max-width: 100%; }
}
body.cart-open { overflow: hidden; }



/*
 * FOOTER
 */


.footer { width: 100%; background-color: var(--color-white); padding: 32px 0; }
.footer p { width: 100%; text-align: center; font-size: 14px; color: #999; }
.footer a { color: #999; text-decoration: underline; }




/*
 * GESTION DES LIVRES
 */


.books-gallery { overflow: hidden;  width: 100%; display: flex; overflow: hidden;  padding: 96px 16px 64px 16px;  width: 100%; display: flex; flex-direction: column;  align-items: center; gap: 24px; justify-content: space-between; }
.books-gallery--title { font-size: 36px; line-height: 1.2; font-weight: 700; letter-spacing: -1px; color: var(--color-white); text-align: center; }
.books-gallery--text { font-size: 16px; line-height: 1.2; color: rgba(255, 255, 255, 0.8); text-align: center; margin-bottom: 24px; }
.books-gallery--wrapper { display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; position: relative;}
.books-gallery--list { list-style: none; /*width: 100%;*/ display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; margin: 0 !important; padding: 0; }
.books-gallery--item { display: flex; flex: 1; position: relative; margin: 0 0 10px 0 !important; padding: 0 0px !important; overflow: hidden; flex-direction: column;}
.books-gallery--item:before { content: '' !important; }
.books-gallery--book-cover { display: block; width: 100%; overflow: hidden; }
.books-gallery--item img { display: block; object-fit: cover; transition: transform 250ms ease; }
.books-gallery--book-meta { display: block; }

.books-gallery--book-title { display: block; width: 100%;  font-weight: 700; text-align: center; padding-top: 8px; line-height: 1; color: var(--color-white); }
.books-gallery--book-title:hover { color: var(--color-white); }
.books-gallery--book-subtitle { display: block; width: 100%; font-weight: 400; text-align: center; font-style: italic;  padding-top: 8px; line-height: 1; color: var(--color-white); }
.books-gallery--book-action { display: block; width: 100%; padding: 8px 0; text-align: center; }
.books-gallery--btn { display: inline-block;  background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255,255,255,.3); border-radius: 50px; color: var(--color-white); font-size: 16px; padding: 8px 16px; text-align: center; transition: all 250ms; cursor: pointer; }
.books-gallery--btn:hover { color: var(--color-dark-steel-blue);  background: rgba(255, 255, 255, 0.7); }

.books-gallery--item:hover { cursor: pointer; }
.books-gallery--item:hover img { transform: scale(1.05); }
.books-gallery--item:hover .books-gallery--btn { color: var(--color-dark-steel-blue);  background: rgba(255, 255, 255, 0.7); }

.books-gallery--dots { display: flex; gap: 8px; justify-content: center; }
.books-gallery--dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transition: all 250ms; cursor: pointer; }
.books-gallery--dot.active { background: var(--color-white); width: 24px; border-radius: 4px; }
.books-gallery--dot:hover { background: rgba(255, 255, 255, 0.6); }


@media screen and (max-width: 767px) {
	.books-gallery--item { width: 150px !important; }
	.books-gallery--book-meta { height: 72px; }
	.books-gallery--book-title { font-size: 18px; }
	.books-gallery--item img { width: 150px !important; min-width: 150px; max-width: 150px; }
	.books-gallery--item img img { width: 150px; height: 225px; }
	.books-gallery--book-title { font-size: 14px;  }
	.books-gallery--book-subtitle { font-size: 12px; }
}
@media screen and (min-width: 768px)  {
	.books-gallery--item { width: 250px !important; }
	.books-gallery--book-meta { height: 64px; }
	.books-gallery--book-title { font-size: 18px; }
	.books-gallery--item img { width: 250px !important; min-width: 250px; max-width: 250px; }
	.books-gallery--item img img { width: 250px; height: 375px; }
	.books-gallery--book-title { font-size: 16px;  }
	.books-gallery--book-subtitle { font-size: 14px; }
}



.book-hero {  margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 32px; width: var(--content-width); height: auto; padding: 64px 0; }
.book-hero--title { width: 100%; font-size: 48px; line-height: 1.3; color: var(--color-white); font-weight: 700; letter-spacing: -1px;  }
.book-hero--subtitle { width: 100%; font-size: 24px; line-height: 1.3; color: var(--color-white); font-weight: 700; opacity: 0.7; letter-spacing: -0.5px;  }
.book-hero--text p { font-size: 16px; color: var(--color-white); line-height: 1.6; }
.book-hero--image img { display: block; width: 100%; height: auto; }

.book-hero--meta { width: 100%; padding: 32px 0 0 0; display: flex; justify-content: center; }
.book-banner--meta-item { width: 50%; display: flex; align-items: center; justify-content: center; }
.book-banner--meta-item svg { width: 24px; height: 24px; color: var(--color-white); }
.book-banner--meta-item span { display: block; font-size: 14px; color: var(--color-white); padding-left: 8px; }

.book-hero--actions { width: 100%; padding: 32px 0 0 0;  display: flex; flex-wrap: wrap; justify-content: space-between;}
.book-hero--action-item { width: calc(50% - 16px); display: block; align-items: center; justify-content: flex-start; }
.book-hero--action-item a.btn { display: block; width: 100%; background: rgba(156, 42, 42, 0.7); border: 1px solid rgba(255,255,255,.3); border-radius: 50px; color: var(--color-white); padding: 12px 0; text-align: center; transition: all 250ms; cursor: pointer;}
.book-hero--action-item a.btn:hover { background: rgba(156, 42, 42, 1); }
.book-hero--action-item a.btn.shadow { background: rgba(255, 255, 255, 0.3); }
.book-hero--action-item a.btn.shadow:hover { background: rgba(255, 255, 255, 0.7); cursor: pointer; }
.book-hero--action-item span.price { display: block; width: 100%; text-align: center; font-size: 16px; color: var(--color-white); font-style: italic; margin-top: 16px; }
.book-hero--mention { display: block; width: 100%; text-align: left; font-size: 14px; line-height: 1.5; color: var(--color-white); opacity: 0.7; font-style: italic; margin-top: 32px;  }

.book-hero--action-full { width: 100%; display: block; text-align: center; }
.book-hero--action-full a.btn { display: inline-block; background: rgba(156, 42, 42, 0.7); border: 1px solid rgba(255,255,255,.3); border-radius: 50px; color: var(--color-white); padding: 12px 24px; text-align: center; transition: all 250ms; cursor: pointer;}
.book-hero--action-full a.btn:hover { background: rgba(156, 42, 42, 1); }

.book-hero--action-download { width: calc(50% - 16px); display: block; }

.book-hero--action-preview { display: block; width: 100%; text-align: center; font-size: 16px; font-weight: 700; color: var(--color-white); margin-top: 32px; }
.book-hero--action-preview a { text-decoration: underline; transition: color 250ms; }
.book-hero--action-preview a:hover { color: var(--primary-color); }

.book-download--result { display: none; width: 100%; text-align: center; color: var(--color-white); line-height: 1.6; }
.book-download--result strong { display: block; width: 100%; font-weight: 900; font-size: 200%; padding-bottom: 32px; }

.book-related { width: var(--content-width); margin: 32px auto; display: flex; flex-direction: row; justify-content: space-between; }
.book-related-item { width: 30%; }
.book-related-item img { border-radius: 5px; }
.book-related-item h3 { font-size: 16px; font-weight: 700; margin: 8px 0; }
.book-related-item h3 a { font-size: 16px; font-weight: 700; color: #333; border: none; }
.book-related-item p { width: 100%; font-size: 16px; color: #333; font-style: italic; line-height: 1.2; margin: 8px 0; }


@media (max-width: 767px) {	
	.book-hero--title { font-size: 32px; text-align: center; }
	.book-hero--subtitle { font-size: 18px; text-align: center; }
	.book-hero--image { width: 100%;  }
	.book-hero--image img { width: 250px; height: 375px; margin: 0 auto;  }
	.book-hero--action-item { width: calc(50% - 8px); }
	.book-hero--action-item a.btn { font-size: 16px; }
}	

@media (min-width: 768px) {
  .book-hero { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; column-gap: 32px; row-gap: 32px; }  
  .book-hero--header { grid-column: 1; grid-row: 1; }  
  .book-hero--image { grid-column: 2; grid-row: 1 / 3; /* s'étend sur les 2 lignes */  }  
  .book-hero--text { grid-column: 1; grid-row: 2; }
}

@media (min-width: 768px) and (max-width: 991px) {
	.book-hero--title { font-size: 36px; }
	.book-hero--subtitle { font-size: 18px; }
	.book-hero--image { width: 280px; height: 420px; }
	.book-hero--action-item { width: calc(50% - 8px); }
	.book-hero--action-item a.btn { font-size: 16px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
.book-hero--title { font-size: 36px; }
.book-hero--subtitle { font-size: 24px; }
.book-hero--image { width: 300px; height: 450px; }
.book-hero--action-item a.btn { font-size: 16px; }

}

@media (min-width: 1200px) {
.book-hero--title { font-size: 48px;  }
.book-hero--subtitle { font-size: 24px; }
.book-hero--image { width: 300px; height: 500px; }
.book-hero--action-item a.btn { font-size: 16px; }

}    

.book-download { width: var(--content-width); margin: 32px auto; background-color: var(--color-purplish-blue); padding: 32px; border-radius: 24px; }
h2.book-download--title { width: 100% !important; color: var(--color-white); margin: 0 0 32px 0; text-align: center; }
.book-download--form { display: block; text-align: center; }
.book-download--email { display: inline-block; width: 100%; max-width: 500px; border: 8px solid #fff; border-radius: 32px; font-weight: 400; font-size: 16px; padding: 10px; outline: none; }
.book-download--firstname { display: none; }
.book-download--info { width: 100%; text-align; center; font-size: 15px; color: var(--color-white); font-style: italic; opacity: 0.7; padding: 16px 0 32px 0; }
.book-download--btn { display: inline-block; background: rgba(156, 42, 42, 0.7); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50px; color: var(--color-white); font-size: 16px; padding: 16px 32px; text-align: center; transition: all 250ms; }
.book-download--btn:hover { background: rgba(156, 42, 42, 1); cursor: pointer; }

@media (max-width: 767px) {
.book-download { border-radius: 16px; }
h2.book-download--title { font-size: 24px; }
.book-download--info {  font-size: 14px; }
}
