*,::before,::after{box-sizing:border-box}*{margin:0;font:inherit;}html,body{height:100%}html{color-scheme: dark light;
    hanging-punctuation: first last;scroll-behavior:smooth}img,picture,svg,video{display:block;max-width:100%}img{vertical-align:middle;height:auto;object-fit:cover;line-height:0;font-style:italic;shape-margin:0.75rem;}input,button,textarea,select{font:inherit}button:focus,input:focus,select:focus{outline:none}p,h1,.h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}h1,.h1{hyphens:auto}ul{margin:0;padding:0}a{display:inline-block;text-decoration:none;color:black;line-height:var(--line-height)}#root,#__next{isolation:isolate}

:root {
  --color-grey : #555;
  --color-grey-light : #aaaaaa;
  --color-grey-light-light : #f3f3f3;
  --color-green : #84d3aa; 
  --success : green;
  --error : red;  

  --font-primary: system-ui, sans-serif;
  --font-secondary: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;
  --font-tag: 'Oswald', system-ui, sans-serif;
  --text-base-size: 1.125rem;
  --body-line-height: 0;
  
  --ratio: 1.4;
  --line-height-large: 1.75;
  --line-height: 1.5;
  --line-height-medium: 1.3;
  --line-height-small: 1.15;

  /* Fluid type scale */
  --size-step--2: clamp(0.6944rem, 0.6376rem + 0.284vi, 0.84rem);
  --size-step--1: clamp(0.8333rem, 0.7488rem + 0.4228vi, 1.05rem);
  --size-step-0: clamp(1rem, 0.878rem + 0.6098vi, 1.3125rem);
  --size-step-1: clamp(1.2rem, 1.028rem + 0.8598vi, 1.6406rem);
  --size-step-2: clamp(1.44rem, 1.2016rem + 1.1918vi, 2.0508rem);
  --size-step-3: clamp(1.728rem, 1.402rem + 1.6302vi, 2.5635rem);
  --size-step-4: clamp(2.0736rem, 1.6323rem + 2.2063vi, 3.2043rem);
  --size-step-5: clamp(2.4883rem, 1.8963rem + 2.9602vi, 4.0054rem);
  --size-step-6: clamp(2.986rem, 2.1974rem + 3.943vi, 5.0068rem);
  --size-step-7: clamp(3.5832rem, 2.5392rem + 5.2201vi, 6.2585rem);

  /* Fluid space scale */
  --space-3xs: clamp(0.25rem, 0.2256rem + 0.122vi, 0.3125rem);
  --space-2xs: clamp(0.5rem, 0.4268rem + 0.3659vi, 0.6875rem);
  --space-xs: clamp(0.75rem, 0.6524rem + 0.4878vi, 1rem);
  --space-s: clamp(1rem, 0.878rem + 0.6098vi, 1.3125rem);
  --space-m: clamp(1.5rem, 1.3049rem + 0.9756vi, 2rem);
  --space-l: clamp(2rem, 1.7561rem + 1.2195vi, 2.625rem);
  --space-xl: clamp(3rem, 2.6341rem + 1.8293vi, 3.9375rem);
  --space-2xl: clamp(4rem, 3.5122rem + 2.439vi, 5.25rem);
  --space-3xl: clamp(6rem, 5.2683rem + 3.6585vi, 7.875rem);

  --header-height:60px;
  --border-radius:25px;
  --min-column-size:10px;
  --count-column:1}

body {
    min-height: 100svh;	
    background: #ddd;
    font:normal 400 var(--text-base-size) var(--font-primary);
    line-height: var(--body-line-height);
    color:black;
    text-rendering: optimizeSpeed;
    font-smooth: always;
    -webkit-font-smoothing: antialiased}

.full-width { width: 100%}
.full-height { height: 100%}
.full-height-viewport { min-height: 100vh; min-height: 100dvh}
.no-line-height {line-height: 0}
.no-list-style {list-style: none}

.fadein, .fadeinmoveup {
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    backface-visibility: hidden}

.animation {transition: all .15s ease-in-out}
.animation--slow {transition: all .55s ease-in-out}

.button {touch-action: manipulation; inline-size: fit-content; user-select: none;cursor: pointer;border: none}
.button:focus {outline: none} 
.button:focus-visible {outline: 2px solid magenta; outline-offset: 2px} 
sup {font-size: .65em}


/* GRID
/* -------------------------- */
.mainGrid, .autoGrid, .countGrid, .grid {display: grid}
.mainGrid {grid-template-columns: [full-start] minmax(var(--min-column-size), .75fr) [content-start] repeat(12, minmax(var(--min-column-size), 1fr)) [content-end] minmax(var(--min-column-size), .75fr) [full-end]}
.autoGrid {grid-template-columns: repeat(auto-fit, minmax(min(var(--min-column-size), 100%), 1fr))}
.countGrid {grid-template-columns: repeat(var(--count-column), 1fr)}
.max-width-1920 {max-width:120rem; margin-inline:auto}

.banner--rgpd {
    position: fixed;
    display: none;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: var(--space-m);
    background-color: black}
.banner--rgpd > * {
    max-width: 40em;
    margin:0 auto;
    text-align: center}
.banner--rgpd p {
    font-family: var(--font-primary);
    color: white;
    line-height: var(--line-height-medium)}
.banner--rgpd a {color: white; text-decoration: underline}   
.banner--rgpd .btn-group {
    justify-content: center;
    margin: var(--space-xs) auto 0}
.banner--rgpd .btn--accept {
    color: white;
    border-color: var(--success);
    background-color: var(--success)}
.banner--rgpd .btn--decline {
    border-color:#333;
    background: none;
    color: grey}

.mainHeader {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    background-color: white}
header.scroll {box-shadow: 0 5px 15px rgb(0,0,0,0.1)}
header .row--up {
    display: flex;
    align-items: center;
    height: var(--header-height);
    position: relative;
    border-bottom: 1px solid rgb(0,0,0,.25)}
.row--down {border-bottom: 1px solid rgb(0,0,0,.15)}
.scroll .row--down {border-color: white}
header .logo-main {margin-left: .9375rem} 
.langue,.logo-bis,.search-content {display: none}

.topnav {
    display: flex;
    justify-content: center;
    overflow: hidden}
.btnNav { 
    position: fixed;
    right: 0;
    top: 0;
    padding: 14px}
.dropdown {overflow: hidden}
.dropbtn {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 4rem;
    text-transform: uppercase;    
    color: black;
    margin: 0}
.dropbtn span {
    border-radius: 3px;
    padding: .375rem .625rem}     
.dropdown-content {
    display: none;
    overflow: hidden;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 2px 4px 10px 0px rgb(0,0,0,0.1);
    border-top: 1px solid rgb(0,0,0,0.3);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1}
.dropdown-content a {
    display: block;
    font-size: .875rem;
    text-align: left;
    color: var(--beige-text);
    padding: .5rem 1rem} 
.dropbtn.on span {background-color: var(--main-color)}
.dropdown-content a.on {color:black;background-color: rgb(0,0,0,.05)}     
.topnav :is(.btn-group, .search-content ) {display: none}

@media screen and (max-width: 63.9375rem) {
    .row--down {
        border: none;
        box-shadow: 0 10px 10px rgb(0,0,0,0.1)}
    .topnav a, .dropbtn {display: none}
    .topnav.responsive {
        transition: all .15s ease-in-out;
        position: relative;
        display:block;
        padding-top: var(--space-s);
        padding-bottom: var(--space-s);
        border-bottom: 1px solid rgb(0, 0, 0, .15)}
    .topnav.responsive a, .dropbtn {display: block}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropbtn {
        width: 100%;
        font-size: var(--size-step-1);
        text-align: center;
        line-height: 3rem}
    .topnav.responsive .dropbtn.on span {border-radius:6px}
    .topnav.responsive .search-content {
        display: block;
        padding: 0 .9375rem;}
    .topnav.responsive .search-form {
        width: 100%;
        margin-left: 0}
    .topnav.responsive :is(.search-form, .search-input, .search-button) {height: 45px}
    .topnav.responsive .btn-group {
        display: flex;
        margin: var(--space-s) var(--space-l);
        justify-content: center}  
    }

.langue {display: none}
.dropDown--btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    border:none}        
.languebtn {
    font-size: .75rem;
    color: black;
    line-height: var(--line-height);
    text-transform: uppercase;
    background: none;
    margin-top: .250rem;
    padding: .250rem .5rem}
.dropDown--btn.languebtn svg {margin-right: .5rem; margin-left: 0}          
.dropDown--content {display: none}
.langue .dropDown--content {
    position: absolute;
    min-width: 118px;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1}   
.langue .dropDown--content a {
    font-size:.975rem;
    color: black;
    padding: .375rem .5rem;
    display: block}   
.langue .dropDown--content a:hover {background-color: #ddd}
.dropDown--content.show {display: block}      

.page_search h1 i {
    display: block;
    background: none;
    font-family: var(--font-secondary);
    font-size: var(--size-step-2);
    line-height: var(--line-height)}
.page_search p{ grid-column:content; text-align: center}
.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-left: .750rem;
    overflow: hidden;
    background-color: transparent}
.search-input {
    padding: 0 0 0 .875rem;
    width: calc(100% - 40px);
    border: none;
    outline: none;
    font-family: var(--font-secondary);
    font-size: .9375rem;
    color: black}  
.search-button {
    display: grid;
    place-content: center;
    width: 40px;
    padding: 0;
    transition: background-color 0.3s}
.search-input, .search-button {background: rgb(0,0,0,0.08)}
.search-form, .search-input, .search-button {height: 33px}      


/* ACCUEIL
/* ---------------------------------------------------- */
.page_sommaire main {
    padding-top: calc(var(--header-height) + var(--space-l));
    background-color: white}
.page_sommaire main:has(:is(.carousel,.background-video)) {padding-top: var(--header-height)}
.background-video {
    background-color: black;
    min-height: 50svh;
    position: relative}
.youtube-background {opacity: .8}    
.hook {
    z-index:5;position:absolute;
    bottom:0;left:0;right:0;
    max-width:960px;
    margin-inline:auto;
    padding: 0 var(--space-m) var(--space-m);
    text-align: center}
.hook p {
    font-family:var(--font-primary);
    font-size:var(--size-step-2);
    line-height:var(--line-height-small);
    color:white}
.hook p i {background:none}  
.hook .btn--primary {margin-top: var(--space-s)}  
.intro h1 {
    margin-bottom: var(--space-xs);
    font-size: var(--size-step-1);
    font-weight: 700;
    line-height: var(--line-height)}
.intro p {color: var(--color-grey)}     
.page_sommaire main section {grid-column: content}
.page_sommaire :is(.carousel,.background-video) {
    grid-column: full;
    margin-bottom: var(--space-xl)}      
.page_sommaire .recently header {padding-bottom: var(--space-m)}
.page_sommaire :is(.row--first, .row--second) {padding-bottom: 0}
.h2--spotlight, .h2--recently {padding:var(--space-l) 0 var(--space-m)}
.spotlight h3 a {
    font-family: var(--font-secondary);
    line-height: var(--line-height-small)}
.spotlight .list--tag {margin-top: 0}
.spotlight .date {margin-bottom: var(--space-s)}
.highlight {
    display: block;
    margin-top: var(--space-s);
    padding: var(--space-m);
    padding-bottom: var(--space-l);
    text-align: center}
.highlight p {
    font-size: var(--size-step-2);
    line-height: var(--line-height-medium)}
.highlight p i {
    display: block;
    background: none;
    margin-top: var(--space-3xs);
    font-size: var(--size-step-0)}
.zoom {
    grid-column: full;
    grid-row: 2;
    place-items: center;
    margin: 0 0 var(--space-xl)}
:is(.carousel, .background-video) + .section--one + .section--two + .zoom {grid-row: 3} 
.zoom .content {
    padding: var(--space-l);
    text-align:center} 
.zoom h3 {font-weight: 700}  
:is(.zoom,.banner) .btn--secondary {margin-top: var(--space-xs)}      
.banner {
    grid-column: content;
    place-items: center;
    margin: 0 0 var(--space-xl);
    text-align: center}
.banner a {padding: var(--space-m)}    

.recently {background-color: white}
.recently header {
    border-top:1px solid rgb(0,0,0,.15);
    padding: var(--space-m) 0} 

.footer_actus {background: var(--color-grey-light-light)}
:is(.footer_actus, .recently) section {
    --count-column: 1;
    grid-column-gap: var(--space-m);
    grid-column: content}
.footer_actus header {
    text-align: center;
    padding: var(--space-m) 0}   
:is(.footer_actus, .recently) article {margin-bottom:var(--space-l)}                          
:is(.footer_actus, .recently) :is(h2, .h2),
.h2--spotlight, .h2--recently {
    font-size: var(--size-step-3);
    font-weight: 700;
    line-height: var(--line-height-small)}
:is(.footer_actus, .recently) :is(h2, .h2) a {color: black}
:is(.footer_actus, .recently) :is(h3, .h3) {
    display: block;
    font-family: var(--font-secondary);
    font-size: var(--size-step-2);
    line-height: inherit}
:is(.footer_actus, .recently) :is(h3, .h3) a {line-height:var(--line-height-small)}
:is(.footer_actus, .recently) .date {
    display: inline-block;
    text-transform: uppercase}
.footer_actus .link {
    padding-bottom: var(--space-xl);
    text-align: center}           

footer {
    padding-top: var(--space-l);
    background: white}
footer .content {grid-column: content}
footer .row--up {margin-bottom: var(--space-m)}
footer .row--up {
    grid-column: content;
    display: flex;
    align-items: center}
footer .logo-bis {
    display: block;
    margin-left: auto}
footer ul, .col--tag {margin-bottom: var(--space-l)}   
footer li a {
    font-family: var(--font-primary);
    font-size: .875rem;
    text-transform: uppercase}
.col--tag .tag {margin-bottom: var(--space-3xs)}   
.supTitle {
    display: inline-block;
    margin-bottom: var(--space-s);
    font-family: var(--font-tag);
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing:.05em;
    line-height: var(--line-height-medium);
    border-bottom: 2px solid black}
.footer_advert p,
.banner p {
    font-size: var(--size-step-2);
    line-height: var(--line-height-medium)}
.footer_advert .btn--primary {margin-top: var(--space-s)}    
.footer_advert i, .banner i {background: none}    
.subFooter {
    margin-top: var(--space-l);
    padding: var(--space-2xs) 0;
    border-top: 1px solid rgb(0,0,0,.15);
    font-family: var(--font-secondary);
    font-size: .750rem}            


/* BOUTONS
/* -------------------------- */
:is(.btn--primary, .btn--secondary, .btn--outline):focus {outline: none}
:is(.btn--primary, .btn--secondary, .btn--outline):active {transform: scale(.95)}

.btn--primary,
.btn--secondary,
.btn--outline {
    display: inline-block;   
    vertical-align: middle;
    padding: .625rem 1.875rem;
    font-family: var(--font-secondary);
    font-size: .875rem;
    text-align: center;
    color: black;	
    line-height: var(--line-height-small);
    background-color: var(--main-color);	
    border: 1px solid var(--main-color);
    border-radius: 30px}
.btn--secondary {
    background-color: black;
    border-color: black;
    color: white}
.btn--outline {
    background: none;
    border-color: var(--color-grey-light);
    color: black}    
.btn--underline {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    text-decoration: underline}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xs);
    margin: var(--space-m) 0}
.btn-group > * {
    flex:1;
    min-width: fit-content}         

/* RUBRIQUE ARTICLE
/* -------------------------- */
::selection {
  background: hsl(from var(--main-color) h s 85%);	
  color:var(--beige-text)}

.error_404 .article {
    text-align: center;
    padding-bottom: 0}
.error_404 .return {
    grid-column: content;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25)}
    
.rubrique, .article {
    background-color: white;
    padding-top: calc(var(--header-height) + var(--space-l))}
.rubrique {padding-bottom: var(--space-l)}
.rubrique:has(nav) {padding-bottom: 0}       
.article {padding-bottom: var(--space-xl)}    
.rubrique section {
    grid-column: content;
    grid-gap: var(--space-l);
    overflow: hidden}
@media only screen and (min-width:  37.5rem) {.rubrique section {--count-column:2}} 

.rubrique .content .logo {position:relative;}
.rubrique .content .logo:has(+ h2) {margin-bottom: var(--space-s)}
.rubrique .content .logo.highlightBorder::after {
    content: "";
    position:absolute;
    top:0;bottom:0;left:0;right:0;
    border: 8px solid #f17171}
    
.rubrique h2 {font-size:var(--size-step-0);font-family: var(--font-secondary);line-height: var(--line-height-medium)}
.rubrique h2 a {line-height: var(--line-height-medium)} 
.ssRub {text-align: center}
.ssRub .btn--secondary {margin-top: var(--space-2xs)} 

h1 {font-size: var(--size-step-4);line-height: var(--line-height-medium)}
h2 {font-size: var(--size-step-3)}
h3 {font-size: var(--size-step-2)} 
h4 {font-size: var(--size-step-1)} 
h5 {font-size: var(--size-step-0)}
h2,h3,h4,h5 {line-height: var(--line-height)}
p,li,blockquote,pre {
    font-family: var(--font-secondary);
    font-size: var(--text-base-size);
    text-wrap: pretty;
    line-height: var(--line-height)}

strong {
    font-weight:700;
    color:hsl(from var(--main-color) h s 30%)}
i {font-style:italic; background-color: hsl(from var(--main-color) h s 85%)}

.progress {height: 1px;background: black;position: fixed;top: 0;left: 0;width: 100%;z-index: 30;transform-origin: 0 50%;animation: scaleProgress auto linear;animation-timeline: scroll(root)}
@keyframes scaleProgress {
    0% {transform: scaleX(0)}
    100% {transform: scaleX(1)}}  

hr {width: 100%;border:none;border-top:1px solid rgb(0,0,0,.25);margin: var(--space-m) 0}

.article :is(h2,h3,h4,h5,h6,p,ul,blockquote,pre),
.article :is(.list--tag,.date,.toggleBtn,.block,.download,.btn-group,.table) {grid-column: content}    
.art-logo {
    grid-column: full;
    margin-bottom: var(--space-m)} 
    picture:has(.multiply),
    a:has(.multiply) {background-color: #eee}     
    .multiply {mix-blend-mode: multiply}  
    
.list--tag {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: var(--space-s);
    margin-bottom: var(--space-xs)}
.article .list--tag {
    margin-top: 0;
    justify-content: center}
.tag {
    font-family: var(--font-tag);
    border: 1px solid rgb(0,0,0,.25);
    padding: .125rem .375rem;
    border-radius: 3px;
    font-size:.750rem;
    letter-spacing:.05em}
.list--tag .tag:not(:last-child) {margin-right: 5px}   
.tag.selection {
    padding-top: 4px;
    background-color: #FF8383;  
    border-color: #FF8383} 
.tag.rub {
    background-color:hsl(from var(--main-color) h s 85%);
    border-color:hsl(from var(--main-color) h s 85%);
    text-transform: uppercase}    
.date {
    display: inline-block;
    margin-top: var(--space-2xs);
    font-size: .750rem;
    line-height: var(--line-height-small);
    color:var(--color-grey)}
.article .date {
    margin-top: 0;
    margin-bottom: var(--space-l);
    font-size: 1rem;
    line-height: var(--line-height);
    text-align: center}

:is(.rubrique,.article) h1 {
    grid-column: content;
    margin: var(--space-xs) 0 var(--space-s);
    text-align: center }
.rubrique h1 {text-align: center}
.rubrique p.rub-chapo,
.article p.art-chapo {grid-column: content}
.rubrique p.rub-chapo {margin-bottom: var(--space-l)}
.rubrique p.rub-chapo, .article p.art-chapo {
    font-family: var(--font-primary);
    line-height: var(--line-height)}                 
.article :is(p, ul, blockquote, .download, .table) + :is(h2, h3, h4, h5) {margin-top: var(--space-m)}
.article :is(p, ul, h2, h3, h4, h5, .table) {margin-bottom:var(--space-s)}
.article :is(h2, h3, h4, h5) strong {font-weight:400}

.art-img picture + picture  {margin-top:var(--space-m)}
.art-img, .art-youtube, .art-sticky  {grid-column: content; margin:var(--space-s) 0}
.art-youtube + .art-youtube {padding-top: 0}
.article :is(.art-img, .art-youtube, .art-sticky, .block, .table) + :is(h2, h3, h4, h5) {margin-top:var(--space-l)}
.art-sticky {position: sticky;top:70px;z-index: 10}

.article ul {padding-left: .375em}
.article ul > li {padding-left:.375em; margin-bottom: .250em}
.article ul > ::marker {font-size:var(--text-base-size);color:var(--color-grey);content: "\2022"}

.toggleBtn, .block,.block > .content {grid-column: span 12}
.block :is(p,figure) {margin-bottom: var(--space-m)}
.block :is(p,figure):last-child {margin-bottom:0}
.toggleBtn {
    position: relative;
    display: flex;
    align-items:center;
    padding: var(--space-s) 2.5rem;
    padding-left: 0}
.article .toggleBtn :is(h2,h3,h4) {
    font-size: var(--size-step-1);
    margin-bottom: 0;
    line-height: var(--line-height-small)}
.article .block :is(h2,h3,h4) {font-size: var(--size-step-0)}          
.toggleBtn button {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    border:none;
    background: none;
    cursor: pointer}
.toggleBtn button svg {
    margin-left: auto;
    margin-right: 5px;
    transition: all .275s linear}
.toggleBtn button.down svg {transform:rotate(45deg)}                 
.block {
    --count-column:12;
    grid-template-rows: 0fr;
    transition: grid-template-rows 275ms;
    border-bottom: 1px solid rgb(0 0 0 / .2)}
.block > .content {overflow: hidden}    
.toggle {
    grid-template-rows: 1fr;
    padding-bottom:var(--space-m)}
.block + :is(.art-img, .art-youtube) {margin-top:var(--space-xl)}

blockquote {
    padding: var(--space-m) var(--space-m) 0;
    margin: var(--space-s) 0;
    margin-left: 0;	
    background-color: hsl(from var(--main-color) h s 85%);
    font-weight: 500}
blockquote p {font-family: var(--font-primary)}
blockquote p:last-child {margin-bottom: 0}
.article blockquote :is(h2,h3,h4,h5) {
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: var(--size-step-1);
    font-weight: 600;
    line-height: var(--line-height-medium)}   
.article blockquote :is(h2,h3,h4,h5) strong {font-weight: 600}   

.article :is(p, ul, blockquote) a {text-decoration-line: underline}
a { text-underline-offset: 0.1em;
    text-decoration-thickness: 2px}      
a:is(:hover, :focus) {outline: none}

.download a {
    grid-column: content;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    margin: var(--space-2xs) 0;
    padding: var(--space-2xs);
    background-color: hsl(from var(--main-color) h s 75%);
    font-family: var(--font-google);
    font-weight: 500;
    font-size: .875rem;
    text-transform: uppercase}   
.download svg {margin-right:var(--space-2xs)}   
.article .download + :is(h2, h3, h4, h5, figure) {margin-top: var(--space-xl)}
.article .download + .download a {margin-top: 0}

table {
    overflow-x: auto;
    margin: 0;
    padding: 0;
    border-spacing: 0;
    border-collapse: collapse;
    border-spacing: 0;
     width: 100%;
    font-size: .875rem;    
    line-height: 1.35em}
th {
    vertical-align: top;
    background-color: hsl(from var(--main-color) h s 85%);
    font-size: 1rem;
    font-weight: 700}
th,td {
    padding:.575rem;
    text-align: center;
    line-height: 1.3em}
tr:nth-child(even) {background-color: #eee}

.next-prev {
    grid-gap: var(--space-xs);
    grid-column: content;
    margin-top:var(--space-m)}   
.prev,.next {background-color:  hsl(from var(--main-color) h s 85%)}
.next-prev a {
    display: flex;
    flex-wrap: wrap;
    background-color: hsl(from var(--main-color) h s 85%);
    line-height: var(--line-height-medium);
    color: black}
.next-prev span {
    display: block;
    margin-bottom: var(--space-3xs);
    font-family: var(--font-tag);
    font-size: .750rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color:black}
:is(.prev,.next) img {width:140px}       
:is(.prev,.next) div {
    width:calc(100% - 140px);
    align-self: flex-end;
    padding: var(--space-xs)}

.page_form_success {padding-bottom: 0}
.article.page_form_success h1 {margin-top: 0}
.page_form_success .art-chapo.success {margin-bottom: 0; text-align: center}
.page_contact hr {grid-column:content; margin-bottom: 0}             
.article.page_form .art-chapo {
    grid-column: content;
    margin-bottom: var(--space-xl);
    font-family: var(--font-primary);
    line-height: var(--line-height)}   
.page_form form {
    grid-column: content;
    display: flex;
    flex-wrap: wrap;
    row-gap: var(--space-m);
    margin-bottom: var(--space-l)} 
.page_form form > * {
    width: 100%;
    line-height: 0}
.page_form h1, .page_form_success h1 {text-align: center}
.article form h2 {
    margin-bottom: .5rem;
    font-size: var(--size-step-1);
    font-weight: 400}
.page_form :is(input[type=email],
input[type=text],
select,textarea) {
    width: 100%;
    padding: .5rem;
    background-color: #eee;
    height: 60px;
    border: none;
    border-radius: 5px;
    font-size: 1.250rem;
    line-height: var(--line-height);
    color:black}
input {outline: 2px solid rgb(0,0,0,0)}
input:user-valid {outline-color: var(--success)}
input:user-invalid {outline-color: var(--error)}
.page_form textarea {min-height: 300px}
.page_form button[type="submit"] {
    cursor: pointer;
    width: 100%;
    height: 80px;
    line-height: 80px;
    border: none;
    border-radius: 5px;
    background: var(--main-color);
    font-size: var(--size-step-1);
    font-weight: 700;
    color: black;
    text-transform: uppercase} 