html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;} body {background: #fff;line-height: 1;}ol, ul {list-style: none;}table {border-collapse: separate;border-spacing: 0;}caption, th, td {font-weight: normal;text-align: left;}blockquote:before, blockquote:after, q:before, q:after {content: "";}blockquote, q {quotes: "" "";}a img {border: 0;}article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;} a{text-decoration: none;}figure{margin: 0;}


/* = Variables
----------------------------------------------- */
:root{
    --gutter: 1.875rem;
    --accent: #00c8ff;
    --accent-glow: rgba(0, 200, 255, 0.18);
    --accent-glow-strong: rgba(0, 200, 255, 0.35);
    /* font size */
    --5px: 0.3125rem;
    --8px: 0.5rem;
    --10px: 0.62rem;
    --12px: 0.75rem;
    --14px: 0.875rem;
    --15px: 0.9375rem;
    --16px: 1rem;
    --18px: 1.125rem;
    --20px: 1.25rem;
    --22px: 1.375rem;
    --24px: 1.5rem;
    --28px: 1.75rem;
    --30px: 1.875rem;
    --32px: 2rem;
    --34px: 2.125rem;
    --36px: 2.25rem;
    --38px: 2.375rem;
    --40px: 2.5rem;
    --44px: 2.75rem;
    --50px: 3.125rem;
    --52px: 3.25rem;
    --58px: 3.625rem;
    --60px: 3.75rem;
    --72px: 4.5rem;
    --80px: 5rem;
    --88px: 5.5rem;
    --92px: 5.75rem;
    --94px: 6rem;
    --100px: 6.25rem;
    --130px: 8.125rem;
    --150px: 9.375rem;
    --170px: 10.625rem;
    --200px: 12.5rem;
    --250px: 15.625rem;
    --350px: 21.875rem;
    --450px: 28.125rem;
}
/* = Grille
----------------------------------------------- */
.container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
}
.container.reverse{
    flex-direction: row-reverse;
}
.container.missing::after {
  content: "";
  flex: auto;
}
.container.missing > *:last-child {
    margin-left: var(--gutter);
}
.container > .all_width {
    margin-left: 0;
}
.container.align_bottom{
    align-items: flex-end;
}
.container.align_top{
    align-items: flex-start;
}
.container.align_center{
    align-items: center;
}
.all_width{ width: 100%; }
.demi{ width: calc(50% - calc(var(--gutter)/2) ); }
.tiers{ width: calc(calc(100%/3) - calc(var(--gutter)*2/3 )); }
.quart{ width: calc(25% - calc(var(--gutter)*3/4) ); }
.cinquieme{ width: calc(calc(100%/5) - calc(var(--gutter)*3/4) ); }
.sixieme{ width: calc(calc(100%/6) - calc(var(--gutter)*3/4) ); }
.trois-quart{ width: calc(75% - calc(
    calc(var(--gutter)/2 - 
        calc(var(--gutter)/6))
    ) ); }
.deux-tiers{ width: calc(calc(100%*calc(2/3)) - calc(
    calc(var(--gutter)/2 - calc(var(--gutter)/6))
    ) ); }
.cinq_douzieme{ width: calc(calc(100%*calc(5/12)) - calc(
    calc(var(--gutter)/2 - calc(var(--gutter)/6))
    ) ); }
.sept_douzieme{ width: calc(calc(100%*calc(7/12)) - calc(
    calc(var(--gutter)/2 - calc(var(--gutter)/6))
    ) ); }

/* Valeures absolues */
.all_width.abs{ width: var(--main_column); }
.demi.abs{ width: calc(calc(var(--main_column)/2) - calc(var(--gutter)/2) ); }
.tiers.abs{ width: calc(calc(var(--main_column)/3) - calc(var(--gutter)*2/3 )); }
.quart.abs{ width: calc(calc(var(--main_column)/4) - calc(var(--gutter)*3/4) ); }
.cinquieme.abs{ width: calc(calc(var(--main_column)/5) - calc(var(--gutter)*3/4) ); }
.sixieme.abs{ width: calc(calc(var(--main_column)/6) - calc(var(--gutter)*3/4) ); }
.trois-quart.abs{ width: calc(var(--main_column)*calc(3/4) - calc(
    calc(var(--gutter)/2 - 
        calc(var(--gutter)/6))
    ) ); }
.deux-tiers.abs{ width: calc(calc(var(--main_column)*calc(2/3)) - calc(
    calc(var(--gutter)/2 - calc(var(--gutter)/6))
    ) ); }
.cinq_douzieme.abs{ width: calc(calc(var(--main_column)*calc(5/12)) - calc(
    calc(var(--gutter)/2 - calc(var(--gutter)/6))
    ) ); }
.sept_douzieme.abs{ width: calc(calc(var(--main_column)*calc(7/12)) - calc(
    calc(var(--gutter)/2 - calc(var(--gutter)/6))
    ) ); }

/* Sans marges */
.all_width.sans{ width: 100%; }
.demi.sans{ width: 50%; }
.tiers.sans{ width: calc(100%/3); }
.quart.sans{ width: 25%; }
.cinquieme.sans{ width: calc(100%/5); }
.sixieme.sans{ width: calc(100%/6); }
.trois-quart.sans{ width: 75%; }
.deux-tiers.sans{ width: calc(100%*calc(2/3)); }
.cinq_douzieme.sans{ width: calc(100%*calc(5/12)) }
.sept_douzieme.sans{ width: calc(100%*calc(7/12)); }

/* float */
.container.float{
    display: block;
    justify-content: flex-start;
}
.container.float .all_width,
.container.float .demi,
.container.float .tiers,
.container.float .quart,
.container.float .sixieme,
.container.float .trois-quart,
.container.float .deux-tiers,
.container.float .cinq_douzieme,
.container.float .sept_douzieme{
    margin-right: var(--gutter);
    float: left;
}
.container.float .demi:nth-child(2n),
.container.float .tiers:nth-child(3n),
.container.float .quart:nth-child(4n),
.container.float .quart + .trois-quart,
.container.float .trois-quart + .quart,
.container.float .tiers + .deux-tiers,
.container.float .deux-tiers + .tiers{
    margin-right: 0px !important;
}
.container.float .demi:nth-child(2n+1),
.container.float .tiers:nth-child(3n+1),
.container.float .quart:nth-child(4n+1){
    clear: both;
}
hr.clear{
    height: 1px;
    display: block;
    margin: 0;
    padding: 0;
    clear: both;
    width: 100%;
    border: none;
    background: none;
}
/* Padding and margin */
.padding_right{ padding-right: calc(var(--main_column)/12); }
.padding_left{ padding-left: calc(var(--main_column)/12); }
.margin_right{ margin-right: calc(var(--main_column)/12); }
.margin_left{ margin-left: calc(var(--main_column)/12); }
.padding_right_double{ padding-right: calc(var(--main_column)/6); }
.padding_left_double{ padding-left: calc(var(--main_column)/6); }
.margin_right_double{ margin-right: calc(var(--main_column)/6); }
.margin_left_double{ margin-left: calc(var(--main_column)/6); }


/* = Structure
----------------------------------------------- */
body{
    font-family: sans-serif;
    background:#0e0e0e;
    color:white;
    padding:var(--40px);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: var(--16px);
}
main{
    min-height: calc(100vh - var(--100px));
}
section{
    margin-bottom: var(--50px);
}

/* = Textes
----------------------------------------------- */
h1{
    font-weight: 700;
    font-size: var(--30px);
    margin-bottom: var(--30px);
}
h1 span{
    opacity: 0.5;
    font-size: var(--8px);
}
h2{
    text-transform: uppercase;
    margin-bottom: var(--12px);
    font-size: var(--12px);
    font-weight: 700;
    padding-bottom: var(--5px);
    border-bottom: 1px solid rgba(30, 30, 30, 1.0);
}
h3{
    font-weight: 700;
    font-size: var(--14px);
}
#credits{
    font-size: var(--12px);
}
#credits a{
    color: #fff;
}
/* Navigation */
#marques{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}
.card{
    background:#1a1a1a;
    padding:12px 16px;
    border-radius:6px;
    cursor:pointer;
    display: inline-block;
    margin-right: 10px;
    transition:
        background 0.25s,
        color 0.25s,
        border-color 0.25s,
        box-shadow 0.25s,
        transform 0.2s;
    border:1px solid transparent;
}
.card-icon{
    width:18px;
    height:18px;
    transform: translateY(1px);
    margin-right: 3px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}
.card:hover{
    background:#1e2a2e;
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 0 12px var(--accent-glow), inset 0 0 8px var(--accent-glow);
    transform: translateY(-1px);
}
.card.active{
    background:#fff;
    color:#000;
    border:1px solid #fff;
}
.card.active .card-icon{
    filter: none;
}
.mobile-only{
    display:none;
}
.desktop-only{
    display:block;
}
.empty{
    padding:20px;
    background:#1a1a1a;
    border-radius:8px;
    color:#888;
    font-style:italic;
}
.loading{
    padding:20px 0;
    color:#444;
    font-size:var(--12px);
    animation: loading-pulse 1.2s ease-in-out infinite;
}
@keyframes loading-pulse{
    0%,100%{ opacity:1; }
    50%{ opacity:0.2; }
}
#not-found{
    padding:16px 20px;
    background:#1a1a1a;
    border-left:3px solid #666;
    border-radius:6px;
    color:#aaa;
    margin-bottom:var(--30px);
}
.hidden{
    display:none;
}
/* Tableaux */

.table-wrapper{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch; /* scroll fluide iOS */
}
.data-table{
    border-collapse:collapse;
    width:100%;
    margin-top:20px;

}
.flash.data-table thead tr:first-child th{
    text-align: center;
}
.data-table th,
.data-table td{
    border-bottom: 1px solid rgb(30, 30, 30);
    padding: var(--10px);
    text-align:left;
    font-weight: 300;
}
.data-table th{
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--12px);
    border-bottom: 1px solid rgb(255, 255, 255);
}
.data-table tr:hover{
    background: rgba(0, 200, 255, 0.04);
}
.data-table tr:hover td:first-child{
    background: linear-gradient(to right, rgba(0, 200, 255, 0.35), rgba(0, 200, 255, 0.04));
}
.projector.data-table tr th:first-child,
.data-table tr td:first-child{
    padding-left: 0;
    font-weight: 700;
}
.data-table .col-alt{
    background: rgba(255,255,255,0.15);
}
.col-distance{
    display: block;
    font-weight: 300;
    font-size: var(--10px);
    text-transform: none;
    opacity: 0.6;
    letter-spacing: 0;
}
.warn-icon{
    position: relative;
    display: inline-block;
    font-size: var(--12px);
    color: #f0a500;
    cursor: help;
    vertical-align: middle;
}
.warn-icon::after{
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #ccc;
    font-size: var(--12px);
    font-weight: 300;
    white-space: normal;
    width: 300px;
    text-align: left;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #333;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
    z-index: 10;
    line-height: 1.5;
}
.warn-icon:hover::after{
    opacity: 1;
}
.col-first-group .warn-icon::after,
.warn-icon.warn-tooltip-left::after{
    left: 0;
    transform: none;
}
.col-last-group .warn-icon::after,
.warn-icon.warn-tooltip-right::after{
    left: auto;
    right: 0;
    transform: none;
}
.metric-info{
    display: inline-block;
    font-size: var(--10px);
    color: #444;
    cursor: help;
    vertical-align: middle;
    margin-left: 5px;
    user-select: none;
    position: relative;
    font-style: normal;
    transition: color 0.15s;
}
.metric-info:hover{
    color: #aaa;
}
.metric-info::after{
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 0;
    background: #222;
    color: #ccc;
    font-size: var(--12px);
    font-weight: 300;
    white-space: normal;
    width: 260px;
    text-align: left;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #333;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 10;
    line-height: 1.5;
}

.metric-info:hover::after{
    opacity: 1;
}

/* Images */
#images{
    margin-top:var(--20px);
}
.image-block{
    background:#111;
    padding:var(--10px);
    border-radius:6px;
}
.image-block img{
    width:100%;
    height:auto;
    display:block;
}
.image-title{
    margin-bottom:6px;
    font-size:14px;
    color:#aaa;
}
.dim-block{
    margin-bottom:var(--30px);
}
.flash-row{
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.flash-row:hover{
    background: rgba(0, 200, 255, 0.05);
    border-color: rgba(0, 200, 255, 0.3);
}
.flash-row .dim-images{
    display:flex;
    gap:var(--gutter);
}
.flash-row .dim-images .image-item{
    flex:1;
}
.flash-row.collapsed .dim-images{
    display:none;
}
.flash-filter-bar{
    display:flex;
    gap:8px;
    margin-bottom:var(--20px);
}
.flash-filter-btn{
    background:transparent;
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    padding:4px 14px;
    border-radius:4px;
    cursor:pointer;
    font-size:var(--12px);
    font-family:inherit;
    transition:background 0.15s;
}
.flash-filter-btn:hover{
    background:rgba(255,255,255,0.1);
}
.dim-title{
    margin-bottom:var(--10px);
    color:#fff;
    cursor:pointer;
    user-select:none;
    display:flex;
    align-items:center;
    gap:10px;
}
.dim-toggle{
    font-size:0;
    opacity:0.4;
    flex-shrink:0;
}
.flash-row:not(.collapsed) .dim-toggle::before{
    content:'×';
    font-size:var(--14px);
}
.flash-row.collapsed .dim-toggle::before{
    content:'›';
    font-size:var(--18px);
}
.image-item{
    background:#1a1a1a;
    padding:8px;
    border-radius:6px;
}
.image-item img{
    width:100%;
    height:auto;
    display:block;
    cursor: pointer;
}
.image-label{
    font-size:var(--12px);
    color:#aaa;
    margin-bottom:5px;
}

/* Lightbox */
.lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
}
.lightbox-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.9);
}
.lightbox-content{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:40px;
}
.lightbox img{
    max-width:95%;
    max-height:85%;
    object-fit:contain;
}
#lightbox-caption{
    margin-top:15px;
    color:white;
    font-size:16px;
    text-align:center;
}
.lightbox.hidden{
    display:none;
}
#lightbox-close{
    position:absolute;
    top:20px;
    right:20px;
    background:#fff;
    color:#000;
    border:none;
    padding:10px 14px;
    cursor:pointer;
    font-size:14px;
    font-weight:bold;
    border-radius:4px;
}
#lightbox-close:hover{
    background:#ddd;
}
/* Highlights */
#highlights{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:10px;
    margin-bottom:20px;
}
.highlight{
    background:#111;
    border-radius:6px;
    padding:12px;
    border: 1px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.highlight:hover{
    border-color: rgba(0, 200, 255, 0.25);
    box-shadow: 0 0 10px var(--accent-glow);
}
.highlight-label{
    font-size:12px;
    color:#888;
    margin-bottom:4px;
}
.highlight-value{
    font-size:18px;
    font-weight:bold;
    color: var(--accent);
    text-shadow: 0 0 12px var(--accent-glow-strong);
}

/* = Compare
----------------------------------------------- */
.card-modele{
    position: relative;
}
.compare-toggle{
    position: relative;
    /*top: 6px;
    right: 6px;*/
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.4);
    border-radius: 3px;
    width: 22px;
    height: 22px;
    font-size: var(--14px);
    cursor: pointer;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    transition: all 0.15s;
    padding: 0;
    line-height: 1;
    margin-left: 5px;
}
.compare-toggle:hover{
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.compare-toggle-active{
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}
.card.active .compare-toggle{
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.25);
    color: rgba(0,0,0,0.5);
}
.card.active .compare-toggle:hover{
    background: rgba(0,0,0,0.15);
    color: #000;
    border-color: rgba(0,0,0,0.5);
}
.card.active .compare-toggle.compare-toggle-active{
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}
#compare-bar{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-top: 1px solid #2a2a2a;
    padding: 12px var(--40px);
    z-index: 100;
}
.compare-bar-inner{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.compare-bar-section{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.compare-bar-sep{
    border-top: 1px solid #2a2a2a;
}
.compare-bar-label{
    font-size: var(--12px);
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}
.compare-chips{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}
.compare-chip{
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: var(--12px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.compare-chip-remove{
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
    font-size: var(--12px);
    line-height: 1;
    font-family: inherit;
}
.compare-chip-remove:hover{ color: #fff; }
.compare-hint{
    font-size: var(--12px);
    color: #444;
    white-space: nowrap;
}
.compare-launch-btn{
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--14px);
    font-weight: 700;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.15s, box-shadow 0.25s, transform 0.2s;
}
.compare-launch-btn:hover{
    background: #e0f8ff;
    box-shadow: 0 0 16px var(--accent-glow-strong);
    transform: translateY(-1px);
}
.compare-clear-btn{
    background: none;
    border: 1px solid #2a2a2a;
    color: #555;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--12px);
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.15s;
}
.compare-clear-btn:hover{ color: #fff; border-color: #555; }
#section-compare{
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #0e0e0e;
    overflow-y: auto;
    padding: var(--40px);
    margin: 0;
}
#section-compare h2{
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgb(30,30,30);
    padding-bottom: var(--5px);
    margin-bottom: var(--12px);
}
.compare-back-btn{
    background: none;
    border: 1px solid #333;
    color: #aaa;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--12px);
    font-family: inherit;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.15s;
}
.compare-back-btn:hover{ color: #fff; border-color: #666; }
.compare-controls{
    display: flex;
    gap: var(--30px);
    margin-bottom: var(--30px);
    flex-wrap: wrap;
}
.compare-filter-group{
    display: flex;
    align-items: center;
    gap: 10px;
}
.compare-filter-label{
    font-size: var(--12px);
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}
.compare-filter-btns{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.compare-filter-btn{
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--12px);
    font-family: inherit;
    transition: background 0.15s;
}
.compare-filter-btn:hover{ background: rgba(255,255,255,0.1); }
.compare-filter-btn.active{ background: #fff; color: #000; }
.compare-filter-partial{ opacity: 0.45; }
.compare-table td:not(:first-child),
.compare-table th:not(:first-child){
    text-align: center;
}
.compare-table th .col-distance{
    font-weight: 300;
}

@media (max-width:768px){
    body{
        padding:var(--15px);
    }
    .mobile-only{
        display:block !important;
        width:100%;
        padding:12px;
        font-size:16px;
        border-radius:6px;
        margin-bottom:15px;
    }
    .desktop-only{
        display:none !important;
    }
    #section-compare{
        padding: var(--15px);
    }
    #section-compare .compare-controls{
        gap: var(--15px);
    }
    #selection{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: stretch;
    }
    #section-marques,
    #section-modeles{ width: calc(50% - calc(var(--gutter)/2) ); }
    .demi,
    .tiers,
    .quart,
    .trois-quart,
    .deux-tiers{
        float: none;
        width: 100%;
        margin-right: 0px;
        margin-bottom: var(--30px);
    }
    .card{
        margin-bottom: var(--10px);
    }
    /* Data table */
    .table-wrapper{
        width:100%;
        overflow-x:auto;
        overflow-y:hidden;
        -webkit-overflow-scrolling:touch; /* scroll fluide iOS */
    }
    /* tableau */
    .data-table{
        border-collapse:collapse;
        min-width:600px; /* important */
        width:max-content;
    }
    .data-table th,
    .data-table td{
        padding:8px 12px;
        border-bottom:1px solid #333;
        white-space:nowrap;
    }
    /* scrollbar */
    .table-wrapper::-webkit-scrollbar{
        height:6px;
    }
    .table-wrapper::-webkit-scrollbar-track{
        background:#111;
    }
    .table-wrapper::-webkit-scrollbar-thumb{
        background:#444;
        border-radius:3px;
    }
}
/* Description SEO */
#section-description{
    margin-top: var(--80px);
    padding-top: var(--50px);
    border-top: 1px solid rgb(30, 30, 30);
    max-width: 720px;
}
#section-description h2{
    border-bottom: none;
    font-size: var(--14px);
    text-transform: uppercase;
    font-weight: 700;
    color: #555;
    margin-bottom: var(--20px);
    padding-bottom: 0;
}
#section-description p{
    font-size: var(--14px);
    line-height: 1.7;
    color: #666;
    margin-bottom: var(--16px);
}
#section-description p:last-child{
    margin-bottom: 0;
}
.yt-embed{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-top: var(--24px);
}
.yt-embed iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}
main#legal{
    max-width: 750px;
}
#legal h2{
    margin-top: var(--50px);
}
#legal p{
    line-height: 1.6em;
    margin-bottom: 1.2em;
}
#legal li{
    line-height: 1.8em;
    font-size: var(--18px);
}
#legal ul,
#legal ol{
  margin-bottom: 1.2em;
}
#legal p ~ ul,
#legal p ~ ol{
    margin-top: -1.2em;
}
#legal ul li:before{
  content: "■ ";
}
#legal ol{
  counter-reset: repas;
}
#legal ol li{
  counter-increment: repas;
}
#legal ol li:before{
  content: counter(repas);
  font-weight: bold;
  margin-right: var(--8px);
}
a{
    text-decoration: underline;
    color: inherit;
}
a:hover,
a:focus{
    color: var(--accent) !important;
    background-color: transparent !important;
    text-shadow: 0 0 8px var(--accent-glow-strong);
}
::selection {
    color: #000;
    background-color: #fff;
}
::-moz-selection {
    color: #000;
    background-color: #fff;
}
.section-meta-link{
    font-size: 0.75em;
    font-weight: normal;
    opacity: 0.6;
    text-transform: none;
}
.section-meta-link:before{
    content: "../ ";
    font-size: 0.75em;
    font-weight: normal;
    text-transform: none;
}
