

.navbar .d-flex.align-items-center.ms-auto.me-2.d-lg-none.lang-mobile {
    position: absolute !important;
    right: 80px;
    flex-wrap: nowrap !important;
  }


/***** CONTENT PAGE ******/
#content-page {
	margin-top: 150px;
}

/* Titres */

#content-page h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 3.2rem;
    margin-top: 25px;
}

#content-page h2 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 2.8rem;
    margin-top: 25px;
}

#content-page h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 2rem;
    margin-top:25px;
}

#content-page h4 {
    font-size: 1rem;
    color: #54595f;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.5rem;
}

/* Texte */
#content-page p,
#content-page ul li {
    color: #D7D6D6;
    font-size: 16px;
}

#content-page a {
    color: #48BFE3;
    font-weight: bold;
}

/* Listes */
#content-page ul {
    margin-left: 50px;
    margin-bottom: 20px;
}

#content-page ul li {
    list-style-type: disc;
}

#content-page ul li::marker {
    color: #5c0aff;
    font-size: 1.3em;
}

#content-page ul ul li {
    list-style-type: circle;
}

/* Tables */
#content-page #table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
    padding-bottom: 10px;
}

#content-page table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

#content-page thead {
    background-color: #018cff;
    color: #fff;
}

#content-page th,
#content-page td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e3e2e2;
}

#content-page tbody tr:nth-child(even) {
    background-color: #fafafa;
}

#content-page th {
    font-size: 1rem;
}

#content-page td {
    font-size: 0.95rem;
    background: #ffffff;
    color: #000;
}

/* Alerte */
#content-page .warning {
    color: #d9534f;
    font-weight: bold;
}

/* Boutons */
#content-page a.btn {
    background-color: var(--dtr-btn-bg);
    border-color: var(--dtr-btn-border-color);
    color: var(--dtr-white);
    border-radius: var(--dtr-rounded-xs);
}

/* Témoignages */
#content-page .temoignages, #content-page .infos {
    background-color: #495669;
    border-radius: 10px;
    padding: 20px;
    font-style: italic;
    max-width: 80%;
    margin: 30px auto;
}

#content-page .temoignages p, #content-page .infos p {
    color:#fff;
    font-size:18px;
}

#content-page .temoignages p strong, #content-page .infos p strong {
    color: #ffbd07;
}



/* ==========================================================
   ARTICLES – CARTES ARCHIVE
========================================================== */

.articles-listing {
    padding: 60px 0;
}

/* Carte */
.article-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

/* Hover */
.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

/* Image */
.article-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* Lien global */
.article-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Titre */
.article-card h3 {
    font-size: 18px;
    min-height: 76px;
    line-height: 1.35;
    margin: 22px 22px 22px;
    color: #111;
    transition: color 0.3s ease;
}

/* Hover titre */
.article-card:hover h3 {
    color: #000;
}

/* Extrait */
.article-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 22px 24px;
    flex-grow: 1;
}

/* Espacement des colonnes */
.articles-listing .row > div {
    margin-bottom: 35px;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .article-card img {
        height: 210px;
    }
}

@media (max-width: 767px) {
    .articles-listing {
        padding: 40px 0;
    }

    .article-card img {
        height: 180px;
    }

    .article-card h3 {
        font-size: 18px;
        margin: 18px 18px 8px;
    }

    .article-card p {
        font-size: 14px;
        margin: 0 18px 20px;
    }
}

@media (max-width: 591px) {
.article-card {margin-top: 2em;}
}



/* ==========================================================
   SINGLE ARTICLE – HEADER
========================================================== */

.article-banner {
    background: #121111;
    background: -webkit-linear-gradient(90deg,rgba(18, 17, 17, 1) 0%, rgba(165, 46, 192, 1) 100%);
    background: -moz-linear-gradient(90deg,rgba(18, 17, 17, 1) 0%, rgba(165, 46, 192, 1) 100%);
    background: linear-gradient(90deg,rgba(18, 17, 17, 1) 0%, rgba(165, 46, 192, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121111",endColorstr="#A52EC0",GradientType=1);
    position: relative;
    top: 135px;
    margin-bottom: 176px;
    border-radius: 15px;
 }

 .article-banner2{
    background-color: none;
    position: relative;
    top: 135px;
    margin-bottom: 176px;
 }

.article-banner .banner-data2 h1{
     color: #FFF;
     font-family: 'Poppins';
     font-size: clamp(1.25rem, 0.7813rem + 2.3438vw, 3.125rem);
     font-style: normal;
     font-weight: 600;
     line-height: clamp(1.5rem, 1.875rem + 1.125vw, 5rem);
     margin: 0px 30px 10px;

}

.article-banner .banner-data2 p{
    color: #ffffff;
    font-family: 'Poppins';
    font-size: 14px;
    font-style: normal;
    margin: 0px 30px 0px;

}

.article-banner .banner-data2 p span:nth-child(2){
    padding-right: 10px;
}

.article-banner .strategy-banner-block {
    display: flex;
    align-items: top;
    height:auto;
}

.article-banner .banner-data h2 {
    color: #ffffff;
}

.article-banner .banner-data p {
    color: rgba(255, 255, 255, 0.85);
}


/* ==========================================================
   BREADCRUMB ARTICLE
========================================================== */

.article-breadcrumb {
    margin: 30px 0;
    color: #FFF;
    font-family: 'Poppins';
    font-size: 10px;
    font-style: normal;
    line-height: 12px;
    margin: 0px 30px 5px;
}

.article-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #ffffff;
    padding: 0 8px;
}

.article-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.article-breadcrumb .breadcrumb-item.active span {
    color: #e587ff;
    font-weight: 600;
    font-size: 13px;
    line-height: 13px;
}


.article-thumbnail img {
    border-radius: 10px;
    padding: 0;
    margin-bottom: 30px;
    width: 100%;
    height: 380px;
    max-width: 660px;
}

/***** BLOG / ARTICLE ******/

/* Titres */
#article_blog h2 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #d8d8d8;
    line-height: 2.8rem;
    margin-top: 25px;
}

#article_blog h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 2rem;
    margin-top:25px;
}

#article_blog h4 {
    font-size: 1rem;
    color: #d8d8d8;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.5rem;
}

/* Texte */
#article_blog p,
#article_blog ul li {
    color: #ffffff;
    font-size: 16px;
}

#article_blog a {
    color: #ffbd07;
    font-weight: bold;
}

/* Listes */
#article_blog ul {
    margin-left: 50px;
    margin-bottom: 20px;
}

#article_blog ul li {
    list-style-type: disc;
}

#article_blog ul li::marker {
    color: #ffbd07;
    font-size: 1.3em;
}

#article_blog ul ul li {
    list-style-type: circle;
}

/* Tables */
#article_blog #table-scroll, .generic-content-inner #table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
    padding-bottom: 10px;
}

#article_blog table, .generic-content-inner table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

#article_blog thead, .generic-content-inner thead {
    background-color: #ffd400;
    color: #343b45;
}

#article_blog th,
#article_blog td, .generic-content-inner th, .generic-content-inner td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e3e2e2;
}

#article_blog tbody tr:nth-child(even) {
    background-color: #fafafa;
}

#article_blog th, .generic-content-inner th {
    font-size: 1rem;
}

#article_blog td, .generic-content-inner td {
    font-size: 0.95rem;
}

/* Alerte */
#article_blog .warning {
    color: #d9534f;
    font-weight: bold;
}

/* Boutons */
#article_blog a.btn {
    background-color: var(--dtr-btn-bg);
    border-color: var(--dtr-btn-border-color);
    color: var(--dtr-white);
    border-radius: var(--dtr-rounded-xs);
}

/* Témoignages */
#article_blog .temoignages, #article_blog .infos {
    background-color: #495669;
    border-radius: 10px;
    padding: 20px;
    font-style: italic;
    max-width: 80%;
    margin: 30px auto;
}

#article_blog .temoignages p, #article_blog .infos p {
    color:#fff;
    font-size:18px;
}

#article_blog .temoignages p strong, #article_blog .infos p strong {
    color: #ffbd07;
}
