: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; background-color: var(--color-white); 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 { background-color: var(--color-white); padding-top: 16px; position: relative;  }
.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-icons { display: block; position: absolute; }
.header-icons ul { margin: 0; display: inline-block:  }
.header-icons li { display: inline-block; line-height: 37px; padding: 0px 4px; line-height: 30px; font-size: 20px; color: var(--color-white); cursor: pointer; }
.header-icons svg { width:20px; height:20px; color: var(--color-dark-red); }

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

article { background-color: var(--color-white); }

@media screen and (max-width: 767px) {
	.header-wrapper { overflow: hidden; z-index: 2; }
	.header-top { z-index: 301; }

	.burger { display: block; position: absolute; width: 30px; height: 40px; top: 20px; left: 10px; transform : translateY(-50%); }
	.burger span { display: block; background-color : var(--color-dark-red); width: 30px; height: 2px; border-radius: 3px; margin-top: -1px; transition : background-color 0.3s ease-in-out; position: absolute; right: 0; top: 50%; bottom: auto; left: auto; }
	.burger span::before,
	.burger span::after { content: ""; width: 100%; height: 100%; transition: transform 0.3s ease-in-out; background-color : inherit; position: absolute; left: 0; }
	.burger span::before { top : -12px; }
	.burger span::after { bottom : -12px; }
	.burger.is-clicked span { background-color: rgba(0, 0, 0, 0); transition: all .1s; }
	.burger.is-clicked span::before,
	.burger.is-clicked span::after { background-color : var(--color-dark-red); }
	.burger.is-clicked span::before { top: 0; transform : rotate(135deg); }
	.burger.is-clicked span::after { bottom: 0; transform : rotate(225deg); }

	.logo { display: block; width: 150px; height: 26px; position: absolute; top: 8px; left: 55px; }
	.logo > img { display: block; width: 150px; height: 26px; user-select: none; }
	.header-icons { top: 7px; right: 5px; }

	.header-nav { display: none; flex-direction: column; justify-content: space-between; width: 100%; position: relative; }
	.header-nav.show { display: flex; width: 100%; height: 100%; position: fixed; z-index: 1; left: 0; top: 0; overflow-x: hidden; background-color: var(--color-white); padding-top: 50px; }
	
	.nav-menu.primary-menu { padding-top: 48px; }
	.nav-menu.secondary-menu { padding-bottom: 48px; }

	.nav-menu ul { display: block; width: 100%; margin: 0; padding: 0 0; }
	.nav-menu li { display: block; width: 100%; padding: 0; margin-bottom: 16px; text-align: center; }
	.nav-menu li a {  line-height: 1.5; font-size: 24px; text-transform: uppercase; color: var(--color-dark-red); }
	.nav-menu li.active { border-bottom: none; }
	.nav-menu li.active a { color: var(--primary-color); }	
}

@media screen and (min-width: 768px) {
	.header-wrapper { position: relative; overflow: hidden; display: flex; flex-grow: 1; }
	.burger { display: none; }
	.logo { display: block; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 35px; }
	.logo > img { display: block; width: 200px; height: 35px; }
	
	.header-icons { top: 7px; right: 5px; }

	.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 { border-bottom: 5px solid var(--color-white); line-height: 30px; padding: 4px 8px; text-align: center; display: inline-block; width: auto; }
	.nav-menu li a { line-height: 30px; font-size: 13px; color: var(--color-dark-red); 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); }

}

@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); }


/*
 * CHAPTERNAV
 */
 
.chapternav { display: block; width: 100%; background: #F5F5F5; border-bottom: 1px solid #ccc;}
.chapternav-icons { text-align: center; height: 85px; position: relative; height: 70px; }
.chapternav-icons ul { list-style: none; margin: 0; padding: 0; overflow-x: auto; overflow-y: hidden; white-space: nowrap; font-size: 0; }
.chapternav-icons li { display: inline-block; margin: 10px 0 10px 0; padding: 0; white-space: nowrap; cursor: pointer; overflow: hidden; text-align: center; padding: 0 8px; }
.chapternav-icons li svg { display: inline-block; width: 32px; height: 32px; color: #999; }
.chapternav-icons li.active svg { color: var(--primary-color); }
.chapternav-icons li a { display: block; width: 100%; #999; font-size: 11px; line-height: 1.2; }
.chapternav-icons li.active a { color: var(--primary-color); }

.chapternav-timeline {width: 100%; overflow-x: auto; padding: 5px 5px 0 5px; box-sizing: border-box; }
.chapternav-timeline--list { display: flex; gap: 0px; justify-content: flex-start; list-style: none; padding: 0; margin: 0 auto; }
.chapternav-timeline--list.centered { justify-content: center; }
.chapternav-timeline--item { padding: 5px 0px; white-space: nowrap; }
.chapternav-timeline--item-title { position: relative; display: block; width: 100%; padding: 0 10px 5px 10px; border-bottom: 2px solid var(--text-color); font-size: 11px; text-align: center; color: var(--text-color); }
.chapternav-timeline--item-title:after { position: absolute; content: ''; width: 6px; height: 6px; border-radius: 3px; background: var(--text-color); left: 50%; bottom: -4px; transform: translateX(50%); }
.chapternav-timeline--item.active .chapternav-timeline--item-title:after { position: absolute; content: ''; width: 14px; height: 14px; border-radius: 7px; background: var(--primary-color); left: 50%; bottom: -8px; transform: translateX(-50%); }
.chapternav-timeline--item.active .chapternav-timeline--item-title { color: var(--primary-color); font-weight: 700; }
.chapternav-timeline--item-subtitle { display: block; width: 100%; padding: 5px 10px 16px 10px; font-size: 11px; text-align: center; color: var(--text-color); }
.chapternav-timeline--item.active .chapternav-timeline--item-subtitle { color: var(--primary-color); }

.chapternav-submenu {width: 100%; overflow-x: auto; padding: 5px 5px 16px 5px; box-sizing: border-box; }
.chapternav-submenu--list { display: flex; gap: 0px; justify-content: flex-start; list-style: none; padding: 0; margin: 0 auto; }
.chapternav-submenu--list.centered { justify-content: center; }
.chapternav-submenu--item { padding: 5px 0px; white-space: nowrap; }
.chapternav-submenu--item-title { position: relative; display: block; width: 100%; padding: 0 10px;  font-size: 11px; text-align: center; color: var(--text-color); }
.chapternav-submenu--item.active .chapternav-submenu--item-title { color: var(--primary-color); border: 1px solid var(--primary-color); border-radius: 30px;   }


/*
 * LISTE D'ARICLES
 */

.articles-list { width: 100%; margin: 32px auto; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr);  gap: 32px; }
/*.article-list__wrap { flex-wrap: wrap; }
.article-list__nowrap { flex-wrap: nowrap; }*/

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

.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; }
.articles-list p.date { width: 100%; text-align: left; font-size: 14px; font-style: italic; color: #666; line-height: 1.3; padding-bottom: 8px; }

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


@media (max-width: 991px) {
	.articles-list { width: var(--content-width); grid-template-columns: repeat(2, 1fr); }
	.articles-list li { /*width: calc(50% - 16px);*/ }
	.articles-list li:nth-of-type(9) { display: none; }
}
@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 figure.ratio-2000-1300 { aspect-ratio: 1.539; }
.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-content img.noborder { border-radius: 0 !important;}

.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; }
}




.table { width: var(--content-width); margin: 32px auto; }
.table table { border-collapse: collapse; border-spacing: 0; border-top: 2px solid var(--color-dark-red); border-bottom: 2px solid var(--color-dark-red); }
.table thead { border-bottom: 1px solid var(--color-dark-red); }
.table th, .table td { font-size: 16px; line-height: 1; padding: 12px 8px; text-align: left; vertical-align: top; }

@media screen and (max-width: 575px) {
	.table { overflow-x: auto; }
	.table th, .table td { white-space: nowrap; font-size: 14px; padding: 8px 8px;}
}



.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; margin: 8px 0; }

.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: 0 0 0; }
.footer-clouds {display: block; width: 100%; height: 100px; margin: 0;  overflow: hidden; fill: var(--color-dark-steel-blue); stroke: var(--color-dark-steel-blue); background: var(--color-dark-steel-white); }

.footer-keepintouch { width: 100%; background: var(--color-dark-steel-blue); padding: 64px 0 0 0; }

.footer-card { width: calc(100% - 32px); max-width: 700px; margin: 0 auto; padding: 32px 0; display: flex; flex-direction: column; flex-wrap: wrap; text-align: center; }

.footer-card__profile_image { width: 150px; height: 150px; border-radius: 50%; border: 5px solid #fff; }
.footer-card__main_name { font-weight: 700; color: var(--color-white); font-size: 22px; letter-spacing: 1px; margin: 24px 0 8px 0; }
.footer-card__main_name::after { content: ''; display: block; height: 1px; width: 50px; background: var(--color-white); opacity: 0.5; }
.footer-card__main_body p { color: var(--color-white); font-weight: 400; line-height: 1.3; opacity: 0.7; margin-bottom: 24px; }
.footer-keepintouch-button { background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255,255,255,.3); border-radius: 25px; color: var(--color-white); font-size: 16px; padding: 8px 16px; text-align: center; backdrop-filter: blur(10px); transition: all 250ms; cursor: pointer; }
.footer-keepintouch-button:hover { color: var(--color-dark-steel-blue);  background: rgba(255, 255, 255, 0.7); }

@media screen and (max-width: 575px) {
	.footer-card { flex; flex-direction: column; flex-wrap: wrap; text-align: center; }
	.footer-card__sidebar { width: 100%; }
	.footer-card__main { width: 100%; }
	.footer-card__profile_image { margin: 0 auto; }
	.footer-card__main_name { text-align: center; }
	.footer-card__main_name::after { margin: 16px auto; }
	.footer-card__main_body p { font-size: 14px; }
}
@media screen and (min-width: 576px) {
	.footer-card { flex-direction: row;  }
	.footer-card__main { text-align: left; }
	.footer-card__sidebar { width: 180px; }
	.footer-card__main { width: calc(100% - 180px); }
	.footer-card__main_name { font-size: 24px; margin: 0 0 20px 0;}
	.footer-card__main_name::after { margin: 20px 0 20px 0; }
	.footer-card__main_body p { font-size: 16px; }
}



.footer-divider  { position: relative; margin: 40px auto 0 auto; height: 1px; width: 50%; }
.footer-divider::before { content: ""; position: absolute; top: 0; left: 5%; right: 5%; width: 90%; height: 1px; background-image: linear-gradient(to right, transparent, #fff, transparent); }
.footer-divider::after { content: ""; position: absolute; z-index: 1; top: -9px; left: calc(50% - 9px); width: 18px; height: 18px; background-color: var(--primary-color); border: 1px solid #ccc; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--color-dark-steel-blue), 0 0 0 4px var(--color-dark-steel-blue); }

.newsletter { position: relative; }
.newsletter--paperplane { position: absolute; }
.newsletter--title { font-weight: 200; color: var(--color-white); text-align: center; }
.newsletter--title strong { font-weight: 900; } 
.newsletter--subtitle { font-weight: 200; color: var(--color-white); text-align: center; }

.newsletter--form { background: #fff; box-shadow: 0 0 30px rgba(255,255,255,0.3); border-radius: 30px; overflow: hidden; }
.newsletter--form-input { font-weight: 400; font-size: 14px; border: 0; padding: 10px; outline: none; }
.newsletter--form-input::placeholder { color: var(--text-color); }
.newsletter--form-input:focus::placeholder { color: var(--color-dark-steel-blue); opacity: 0.5; }
.newsletter--form-button { text-transform: uppercase; font-weight: 400; font-size: 14px; border: 0; color: #fff; background-color: var(--primary-color); padding: 10px 25px; transition: background-color 250ms; cursor: pointer; }
.newsletter--form-button:hover { background-color: var(--color-dull-violet); }
.newsletter--form-item { display: flex; flex-direction: column; }
.newsletter--form-item:first-of-type { position: relative; flex-grow: 1; }
/*.newsletter--form-item:first-of-type::after { content: ''; position: absolute; right: 0; left: 0; bottom: 0; height: 1px; background: rgba(0,0,0,0.1); }*/
.newsletter--form-item:last-of-type { flex-grow: 2; }

@media screen and (max-width: 575px) {
	.newsletter--paperplane { width: 82px; height: 56px; background-size: 82px; top:50px; left: 0px; }
	.newsletter { margin: 40px 0; }
	.newsletter--form { display: flex; flex-direction: column; max-width: 320px; margin: 30px auto; }
	.newsletter--form-input { text-align: center; }
	.newsletter--title { font-size: 20px; line-height: 1.3; margin-left: 0px; }
	.newsletter--subtitle { font-size: 15px; line-height: 1.3; margin-left: 0px; }
}
@media screen and (min-width: 576px) {
	.newsletter--paperplane { width: 100px; height: 68px; background-size: 100px; top:10px; left: 0px; }
	.newsletter { margin: 40px 0; }
	.newsletter--title { font-size: 25px; line-height: 1.3; margin-left: 90px; }
	.newsletter--subtitle { font-size: 15px; line-height: 1.3; margin-left: 90px; }
	.newsletter--form { display: flex; flex-direction: row; border: 8px solid #fff; width: calc(100% - 32px); margin: 30px auto; }
	.newsletter--form-item { justify-content: center; }
	.newsletter--form-button { margin-left: auto; border-radius: 25px; }
	.newsletter--form-item:first-of-type::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; height: initial; left: initial; width: 1px; }
}
@media screen and (min-width: 768px) {
	.newsletter--paperplane { width: 140px; height: 95px; background-size: 140px; top:0px; left: 0px; }
	.newsletter { margin: 60px 0; }
	.newsletter--title { font-size: 32px; line-height: 1.3; margin-left: 100px; }
	.newsletter--subtitle { font-size: 18px; line-height: 1.3; margin-left: 100px; }
	.newsletter--form { width: 550px; margin: 32px auto; }
}
@media screen and (min-width: 992px)  {
	.newsletter--paperplane { width: 220px; height: 150px; background-size: 220px; top:0; left: 40px; }
	.newsletter { margin: 60px 0; }
	.newsletter--title { font-size: 32px; line-height: 1.3; margin-left: 160px; }
	.newsletter--subtitle { font-size: 22px; line-height: 1.3; margin-left: 160px; }
	.newsletter--form { width: 550px; margin: 32px 0 32px 290px; }
}
@media screen and (min-width: 1200px) {
	.newsletter--paperplane { width: 220px; height: 150px; background-size: 220px; top:0; left: 40px; }
	.newsletter { margin: 60px 0; }
	.newsletter--title { font-size: 32px; line-height: 1.3; margin: 0; }
	.newsletter--subtitle { font-size: 22px; line-height: 1.3; margin: 0; }
	.newsletter--form { width: 550px; margin: 32px auto; }
}

.footer-huiwen { width: 100%; height: 36px; }
.footer-huiwen svg { width: 100%; height: 100%; display: block; }

.footer-social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; padding: 32px 0; }
.footer-social-links svg { display: block; width: 32px; height: 32px; }


.footer-logo { width: 180px; height: auto; display: block; margin: 0 auto; }
.footer-tagline { width: calc(100% - 32px); max-width: 700px; margin: 16px auto 32px auto; line-height: 1.6; color: #fff; text-align: center; padding: 16px 0; }

.footer-cols { width: calc(100% - 32px); margin: 16px auto; display: flex; align-items: start; justify-content: space-between; flex-wrap: wrap; }
.footer-col-title { display: block; font-size: 14px; color: #fff; opacity: 0.9;  text-transform: uppercase; font-weight: 700; }
.footer-cols ul { margin: 0; padding: 0; list-style: none; }
.footer-cols li { display: block; width: 100%; padding: 0; font-size: 14px; line-height: 1.5; }
.footer-cols a, .footer-cols span.atc { color: #fff; opacity: 0.7; }
.footer-cols a:hover, .footer-cols span.atc:hover { text-decoration: underline; }

@media screen and (max-width: 575px) {
	.footer-cols .col { width: 100%; margin-bottom: 24px; }
	.footer-col-title { text-align: center; }
	.footer-cols li  { text-align: center; }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
	.footer-cols .col { width: 33%; }
}
@media (min-width: 768px) {
	.footer-cols .col { width: 30%; }
}

.footer-legal { width: calc(100% - 32px); max-width: 700px; margin: 0 auto; font-size: 14px; line-height: 1.6; color: #fff; opacity: 0.5; text-align: center; padding: 16px 0; }


/*
 * ASTROLOGIE
 */

.card-astrology-compute  { width: var(--content-width); margin: 32px auto; display: flex; justify-content: space-between; flex-wrap: wrap; background: var(--color-lacquer-red); border-radius: 24px; padding: 32px; }
.card-astrology-compute--intro { width: 100%; }
.card-astrology-compute--title { width: 100%; text-align: center; font-size: 24px; line-height: 1.3; font-weight: 900; color: #fff; margin-bottom: 15px; }
.card-astrology-compute--subtitle { width: 100%;  text-align: center; font-size: 16px; line-height: 1.3; color: #fff; opacity: 0.7; margin-bottom: 30px; }
.card-astrology-compute--label { width: 30%; font-size: 16px; line-height: 2; color: #fff; text-align: center; font-weight: 700; }
.card-astrology-compute--select { position: relative; display: block; width: 30%; border-radius: 32px; overflow: hidden;}
.card-astrology-compute--select-container { position: relative; width: 100%; border: none; margin: 0; overflow: hidden; }
.card-astrology-compute--select-container select { -webkit-appearance: none; -moz-appearance: none; appearance: none; width: 100%; height: auto; border: 1px solid #eee; border-radius: 3px; margin: 0; padding: 0 10px; font-size: 16px; line-height: 30px;
overflow: hidden; text-overflow: ellipsis; color: #666; background: #fff; }
.card-astrology-compute--select-container::after { content: ''; position: absolute; top: 50%; margin-top: -3px; right: .75em; display: block; width: 0; height: 0; border-color: transparent; border-top-color: #444; border-width: 6px; border-style: solid; pointer-events: none; }
.card-astrology-compute--action { width: 100%; text-align: center; padding: 24px 0 0 0; }
.card-astrology-compute--btn { display: inline-block; background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255,255,255,.3) !important; border-radius: 50px; color: var(--color-white) !important; font-size: 16px; padding: 12px 16px; text-align: center; transition: all 250ms; cursor: pointer; font-weight: 400 !important; }
.card-astrology-compute--btn:hover { color: var(--color-lacquer-red);  background: rgba(255, 255, 255, 0.7); }
.card-astrology-compute--result { width: 100%; padding: 16px 0; text-align: center; }

.card-astrology--result-name { width: 100%; text-align: center; font-size: 20px; color: #fff; margin-bottom: 20px; }
.card-astrology--result-name span { font-weight: 900;  }
.card-astrology--result-url { color: #fff !important; }

@media screen and (max-width: 575px) {
	.card-astrology-compute { border-radius: 16px; }
}


 
.dropdown--elements { display: block; width: var(--content-width); margin: 30px auto; border-bottom: 1px solid #ccc; }
.dropdown--tab { width: 100%; position: relative; border-top: 1px solid #ccc; padding: 15px 0; }
.dropdown--tab input { position: absolute; opacity: 0; z-index: -1; }

.dropdown--heading { width: 100%; display: flex; justify-content: space-between; pointer-events: none; }
.dropdown--label { display: flex; justify-content: space-between; width: 100%; }
.dropdown--label::after { content: "\276F"; width: 16px; height: 16px; text-align: center; transform: rotate(90deg); transition: all 250ms; }
.dropdown--tab input:checked + .dropdown--label::after { transform: rotate(270deg); }

.dropdown--icon { display: block; width: 48px; height: 48px; background: var(--color-lacquer-red); border-radius: 50%; overflow: hidden; }
.dropdown--icon svg { display: block; width: 32px; height: 32px; margin: 8px; color: #fff; }
.dropdown--text { width: calc(100% - 48px); padding-left: 16px; }
.dropdown--title { width: 100%; font-size: 17px; font-weight: 700; color: #333; }
.dropdown--subtitle { width: 100%; font-size: 15px; font-style: italic; color: #666; }
.dropdown--caret { display: block; width: 48px; height: 48px; background: #ddd; border-radius: 50%; overflow: hidden; position relative; }
.dropdown--caret input { display: block; width: 48px; height: 48px; position relative; }
.dropdown--caret input:before { content: ""; display: block; position: absolute; width: 0.5rem; height: 1.5px; background-color: #000; left: 0; transform: rotate(45deg); }
.dropdown--caret input:after { content: ""; display: block; position: absolute; width: 0.5rem; height: 1.5px; background-color: #000; left: 0.3125rem; transform: rotate(-45deg); }
.dropdown--content { display: none;  padding: 15px; transition: all 250ms; }
.dropdown--content p { margin-left: 0; margin-right: 0; }
.dropdown--tab input:checked  ~ .dropdown--content { display: block; }
 


/*
 * CARDS
 */

.articles-inline { width: 100%; margin: 32px auto; display: block; /* background-color: rgba(76,37,69,0.4);*/  padding: 16px 0; border-radius: 16px;  }
.article-content .articles-inline { width: var(--content-width); }
.articles-inline--wrapper { display: flex; width: 100%; overflow-x: scroll; overflow-y: hidden; position: relative; }
.articles-inline--list { list-style: none; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; margin: 0 !important; padding: 0; }
.articles-inline--item { display: flex !important; flex: 1;  position: relative; margin: 0 0 10px 0 !important; padding: 0 0px !important; overflow: hidden; flex-direction: column; width: 300px !important; }
.articles-inline--item:before { content: '' !important; }
.articles-inline--image { width: 100%; height: auto; border-radius: 24px; overflow: hidden; }
.articles-inline--item img { width: 100%; height: auto; object-fit: cover; transition: all 250ms; }
.articles-inline--item a { display: block; width: 100%; padding: 8px 0; font-size: 16px; line-height: 1.3; color: var(--title-color); font-weight: 700; letter-spacing: -0.5px; transition: color 250ms; border: none !important; }
.articles-inline--item:hover img { transform: scale(1.05); opacity: 0.8; }
.articles-inline--item:hover a { color: var(--primary-color); }

.articles-inline--dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.articles-inline--dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(20, 20, 20, 0.3); transition: all 250ms; cursor: pointer; }
.articles-inline--dot.active { background: rgba(20, 20, 20, 1); width: 24px; border-radius: 4px; }
.articles-inline--dot:hover { background: rgba(20, 20, 20, 0.6); }

@media screen and (max-width: 991px) {
	.articles-inline--item { width: 250px !important; }
}


.dynasties { margin: 32px auto; padding: 32px 16px; background: var(--color-dark-steel-blue); }
.dynasties--tag { display: block; width: 100%; font-size: 13px; text-transform: uppercase; color: #fff; text-align: center; letter-spacing: 2px; }
.dynasties--title { display: block; width: 100%; margin: 0; font-size: 36px; color: #fff; font-weight: 900; line-height: 1.3; text-align: center; }
.dynasties-list { list-style: none; display: flex; flex-wrap: wrap; align-items: start; justify-content: start; margin-bottom: 30px; }
.dynasties-list--item { transition: opacity 250ms; border-bottom: 3px solid #fff; position: relative; margin: 0 !important; /*outline: 1px solid #500;*/ }
.dynasties-list--item:before { content: none !important; }
.dynasties-list--item a { display: block; width: 100%; line-height: 1.1; color: #fff; font-size: 13px; border: none; padding: 5px; text-align: center; opacity: 1; transition: color 250ms; }
.dynasties--separator { width: 3px; height: 100px; background: #fff; }
.dynasties--item img { display: block; width: auto; }
.dynasties--period { display: block; width: 100%; line-height: 1.1; color: #ccc; font-size: 11px; text-align: center; }
.dynasties--hanzi { display: block; width: 36px; height: 36px; border-radius: 50%; background: var(--primary-color); border: 2px solid #fff; position: absolute; bottom: -16px; left: calc(50% - 18px); color: #fff; font-size: 16px; line-height: 32px; text-align: center; transition: background 250ms;  }

.dynasties-list--item:hover a { color: var(--primary-color); border: none;}
.dynasties-list--item:hover .dynasties--hanzi { background-color: var(--color-dull-violet); }

@media screen and (min-width: 768px)  {
	.dynasties { width: var(--content-width); border-radius: 24px; }
	.dynasties-list--item { width: calc(100% / 4) !important; height: 140px; padding: 60px 0 0 0 !important; }
}
@media screen and (max-width: 767px)  {
	.dynasties { width: 100%;  }
	.dynasties-list--item { width: calc(100% / 3) !important; height: 140px; padding: 50px 0 0 0 !important; }

	#idynastie-qin { order: 1; }
	#idynastie-han { order: 2; }
	#itrois-royaumes { order: 3; }

	#idynastie-jin { order: 6; border-right: 3px solid #fff; }
	#idynasties-du-nord-et-du-sud { order: 5; }
	#idynastie-sui { order: 4; }

	#idynastie-tang { order: 7; border-left: 3px solid #fff; }
	#i5-dynasties-10-royaumes { order: 8; }
	#idynastie-song { order: 9; }
	
	#idynastie-yuan { order: 12; border-right: 3px solid #fff; }
	#idynastie-ming { order: 11; }
	#idynastie-qing { order: 10; }
}
@media screen and (min-width: 768px) {
	#idynastie-qin { order: 1; }
	#idynastie-han { order: 2; }
	#itrois-royaumes { order: 3; }
	#idynastie-jin { order: 4; }
	#idynasties-du-nord-et-du-sud { order: 8; border-right: 3px solid #fff;}
	#idynastie-sui { order: 7; }
	#idynastie-tang { order: 6; }
	#i5-dynasties-10-royaumes { order: 5; }
	#idynastie-song { order: 9; border-left: 3px solid #fff; }
	#idynastie-yuan { order: 10; }
	#idynastie-ming { order: 11; }
	#idynastie-qing { order: 12; }
}



.card-support { display: block; width: var(--content-width); padding: 0; margin: 32px auto; background-color: var(--color-lacquer-red); border-radius: 24px; padding: 24px; cursor: pointer; }
.card-support-content { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
img.card-support-image { flex-shrink: 0; width: 100px; height: 100px; border-radius: 50px; border: 3px solid var(--color-white); }
.card-support-message { flex-shrink: 1; }
.card-support-message strong { display: block; width: 100%; font-size: 20px; line-height: 1.2; font-weight: 700; color: var(--color-white); }
.card-support-message p { display: block; width: 100%;  font-size: 15px; line-height: 1.3; font-weight: 400; color: rgba(255, 255, 255, 0.8); }
.card-support-button { flex-shrink: 0; width: 200px; 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: 16px 16px; text-align: center; transition: all 250ms; cursor: pointer; }
.card-support-button:hover { color: var(--color-lacquer-red);  background: rgba(255, 255, 255, 0.7); }
.card-support:hover .card-support-button { color: var(--color-lacquer-red);  background: rgba(255, 255, 255, 0.7); }
@media screen and (max-width: 575px) {
	.card-support { border-radius: 16px; }
	.card-support-content { flex-direction: column; flex-wrap: wrap;  }
	.card-support-image { flex-shrink: 1; }
	.card-support-message, .card-support-message p { text-align: center; }	
	.card-support-button { flex-shrink: 1; }
}


.card-festival { display: block; width: 100%; width: var(--content-width); padding: 0; margin: 32px auto; background-color: var(--color-purplish-blue); border-radius: 24px; padding: 24px; }
.card-festival-title { color: #fff; line-height: 1.6; font-size: 18px; }
.card-festival-holiday { color: #fff; opacity: 0.7; line-height: 1.6; font-size: 16px; }

@media screen and (max-width: 575px) {
	.card-festival { border-radius: 16px; }
}


.card-edito { display: block; width: 100%; width: var(--content-width); padding: 0; margin: 32px auto; background-color: var(--color-purplish-blue); border-radius: 24px; padding: 24px; cursor: pointer; }
.card-edito-content { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.card-edito-message { flex-shrink: 1; }
.card-edito-message strong { display: block; width: 100%; font-size: 20px; line-height: 1.2; font-weight: 700; color: var(--color-white); }
.card-edito-message p { display: block; width: 100%;  font-size: 15px; line-height: 1.3; font-weight: 400; color: rgba(255, 255, 255, 0.8); }
.card-edito-button { flex-shrink: 0; width: 200px; 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: 16px 16px; text-align: center; transition: all 250ms; cursor: pointer; }
.card-edito-button:hover { color: var(--color-purplish-blue);  background: rgba(255, 255, 255, 0.7); }
.card-edito:hover .card-edito-button { color: var(--color-purplish-blue);  background: rgba(255, 255, 255, 0.7); }
@media screen and (max-width: 575px) {
	.card-edito { border-radius: 16px; }
	.card-edito-content { flex-direction: column; flex-wrap: wrap;  }
	.card-edito-message, .card-edito-message p { text-align: center; }	
	.card-edito-button { flex-shrink: 1; }
}


.card-ebook { width: var(--content-width); margin: 32px auto; background: var(--color-dark-steel-blue); padding: 24px; border-radius: 24px; display: flex; justify-content: space-between; position: relative; overflow: hidden;}
.card-ebook::after { content: "GRATUIT"; position: absolute; top: 20px; right: -32px;  background: var(--color-purplish-blue); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 40px; transform: rotate(45deg); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); z-index: 1; }
.card-ebook-image { display: block; width: 100px; height: auto; border-radius: 0; }
.card-ebook-image img { display: block; border-radius: 8px; }
.card-ebook-body { display: block; width: calc(100% - 132px); }
.card-ebook-title { display: block; width: 100%; font-size: 22px; color: #fff; font-weight: 700; line-height: 1.3; }
.card-ebook-subtitle { width: 100%; font-size: 18px; color: #fff; font-weight: 700; opacity: 0.7; line-height: 1.3; margin-bottom: 16px; }
.card-ebook-text { font-size: 15px; color: #fff; margin-bottom: 16px; line-height: 1.6;   }
.card-ebook-form { width: 100%; border: 8px solid #fff; background: #fff; border-radius: 32px; display: flex; justify-content: space-between; align-items: stretch; }
.card-ebook-email { font-weight: 400; font-size: 16px; border: 0; padding: 10px; border-radius: 64px; outline: none; flex-grow: 1; }
.card-ebook-btn { font-weight: 700; font-size: 16px; text-transform: uppercase; border: 0; border-radius: 64px; color: #fff; background-color: var(--primary-color); padding: 8px 24px; transition: opacity 250ms; cursor: pointer; }
.card-ebook-btn:hover { opacity: 0.7 }

@media screen and (max-width: 575px) {
 .card-ebook { flex-direction: column; border-radius: 16px; }
 .card-ebook-image { width: 100%; }
 .card-ebook-image img { width: 200px; height: 300px; margin: 0 auto 16px auto; ; object-fit: cover; }
 .card-ebook-body { width: 100%; }
 .card-ebook-form { display: block; border-radius: 32px; border: none; overflow: hidden; }
 .card-ebook-email, .card-ebook-btn { display: block; width: 100%; border-radius: 0; border: none; outline: none; text-align: center; }
}


/*
 * 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--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; }

@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; }
}
