.mainContent {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.bottomContent {
    margin-top: 48px;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--background-400);
}
.bottomContent .mailto::before {
    content: "rightright ";
    font-family: icoEBS;
}
.bottomContent .mailto a {
    text-decoration: underline;
}
.bottomContent .mailto a:hover {
    text-decoration: none;
}

/*************************************************************
$TopContent
*************************************************************/
.topContent {
    margin-bottom: 48px;
}
.topContent h1 {
    line-height: 4rem;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -.001em;
}

.topContent .singleImage {
    width: 100%;
    margin: 0;
    margin-bottom: 24px;
}

.topContent .singleImage img {
    width: 100%;
    border-radius: 8px;
}
.topContent .singleImage .caption {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.topContent .accroche {
    font-size: 1.8rem;
    font-weight: 700;
}



/*************************************************************
$TextComponent
*************************************************************/
.textComponent figure {
    width: 230px;
    margin: 16px;
}
.textComponent figure.right {
    float: right;
}
.textComponent figure.left {
    float: left;
}
.textComponent figure img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
}
.textComponent figure .caption {
    display: none;
}
.textComponent a {
    text-decoration: underline;
}
.textComponent a:hover {
    text-decoration: none;
}
/** $Citation **/
.citation .txt::before,
.citation .txt::after {
    font-size: 2.8rem;
    color: var(--background-400);
}
.citation .txt::before {
    content: "« ";
    font-weight: 400;
}
.citation .txt::after {
    content: " »";
    font-weight: 400;
}
.citation .nom {
    text-align: right;
    color: var(--background-400);
}

/** $Liste puce **/
.textComponent ul li {
    list-style: none;
}
.textComponent ul li::before, 
.insetComponent .insetContent ul li::before {
    content: "•";
    color: var(--background-400);
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    padding: 0px 10px 5px 0px;
}

/** $Liste num **/
.textComponent ol {
    counter-reset: li;
}
.textComponent ol li {
    counter-increment: li;
}
.textComponent ol li::marker, 
.insetComponent .insetContent ol li::marker {
    font-variant-numeric: lining-nums tabular-nums;
    content: " ." counter(li, decimal);
    color: var(--background-400);
    display: inline-block;
    padding: 0 10px 0 0;
    direction: rtl;
}

/** $Question / Réponse **/
.textComponent .question {
    font-weight: 600;
    color: var(--background-400);
    width: 70%;
}
.textComponent .answer {
    font-weight: 600;
    width: 70%;
    margin-right: 0;
    margin-left: auto;
}

/** $Chiffre **/
.textComponent .chiffre {
    font-weight: 600;
    border-left: 4px solid var(--background-400);
    padding-left: 8px;
}


/*************************************************************
$ImagesComponent
*************************************************************/
.imagesComponent .singleImage {
    width: 70%;
    margin: 0 auto;
}
.imagesComponent .singleImage img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
}
.imagesComponent .singleImage .caption {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 0;
}
@media screen and (max-width: 700px) {
    .imagesComponent .singleImage {
        width: 100%;
    }
    
}
/*************************************************************
$InsetComponent
*************************************************************/
.insetComponent {
    background-color: var(--background-400-light);
    width: 70%;
    margin: 0 auto;
    border-radius: 8px;
    padding: 16px;
}
.insetComponent figure {
    width: 230px;
    margin: 16px;
}
.insetComponent figure.right {
    float: right;
}
.insetComponent figure.left {
    float: left;
}
.insetComponent figure img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
}
.insetComponent figure .caption {
    display: none;
}
.insetComponent a {
    text-decoration: underline;
}
.insetComponent a:hover {
    text-decoration: none;
}
.insetComponent .insetTitle {
    font-weight: 700;
    font-size: 2.8rem;
}
.insetComponent .insetSignature {
    font-weight: 300;
    text-align: right;
}
@media screen and (max-width: 700px) {
    .insetComponent {
        width: 100%;
    }
}


/*************************************************************
$ContentList2 Model5
*************************************************************/
.GRDC_mod5 {
    width: 70%;
    margin: 0 auto;
    margin-top: 24px;
}
.GRDC_mod5 .splide__list {
    padding: 24px 0;
}
.GRDC_mod5 .vignette {
    width: 300px;
}
.GRDC_mod5 .thumb {
    display: flex;
    justify-content: center;
}

.GRDC_mod5 .carousel-item .article {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.GRDC_mod5 .carousel-item a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.GRDC_mod5 .carousel-item .article:hover a {
    text-decoration: underline;
}
.GRDC_mod5 .splide__arrow {
    background-color: transparent;
    color: var(--background-400);
}

@media screen and (max-width: 700px) {
    .GRDC_mod5 { width: 100%;}
}

.videoComponent .videoContent {
    max-width: 624px !important;
    aspect-ratio: 16 / 9;
    margin: 0 auto !important;
    height: auto !important;
    padding: 0;
    position: relative;
}
.videoComponent .videoContent iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pdfComponent {
    display: flex;
    gap: 14px;
    justify-content: space-between;
}
.pdfComponent .pdf-title {
    font-size: 1.8rem;
    font-weight: 700;
}
.pdfComponent .pdf-title .ico_ebs {
    font-size: 3rem;
}
.pdfComponent .top-pdf a {
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}
.pdfComponent .top-pdf a:hover {
    text-decoration: none;
}
.pdfComponent figure {
    width: 180px;
}
.pdfComponent figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}