    .leader-talk-wrapper {
        font-family: Arial, Helvetica, sans-serif;
        background-color: #ffffff;
        color: #333;
        line-height: 1.5;
        margin: 0;
        padding: 0;
    }

    .banner-wrapper {
        width: 100%;
        background-color: #090097;
        display: flex;
        justify-content: center;
        padding-top: 40px; 
        padding-bottom: 40px;
        border-bottom: solid 4px #0ebe83;
    }

    .main-banner-content {
        max-width: 1400px;
        width: 100%;
        padding: 0 20px 0 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        gap: 20px;
    }

    .logo-left img {
        display: block;
        width: 280px;
    }

    .header-center {
        text-align: center;
        justify-items: end;
    }

    .header-center .box {
        display: block;
        padding: 3px 30px;
        width: fit-content;
        font-family: "Arial", Sans-serif;
        font-size: 27px;
        font-weight: 600;
        color: #FFFFFF;
        border: none;
    }
    .mi-logo-img {
        font-size: 16px;
    }

    .box.with-image {
        background-image: url('https://evenements.lemondeinformatique.fr/wp-content/uploads/2026/05/Objet-dynamique-vectoriel-1.ai_.png');
        background-size: cover;
        background-position: center;
        color: white;
    }

    .box.purple { 
        background-image: url('https://evenements.lemondeinformatique.fr/wp-content/uploads/2026/05/Objet-dynamique-vectoriel-1.ai_.png');
        margin-top: 5px; 
        background-size: cover;
        background-position: center;
    }
    .box.normal {
        font-size: 16px !important;
        background: transparent;
        margin-top: 10px;
    }

    .logo-right {
        display: none;
        align-items: center;
        gap: 30px;
    }

    .mi-logo-img img, 
    .distributique-img img {
        height: 30px;
        display: block;
    }

    .content-container {
        max-width: 1200px;
        margin: 0px auto;
        padding: 50px 20px 100px;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }

    .badges {
        display: flex;
        gap: 12px;
        margin-bottom: 25px;
    }

    .badge {
        
        border-radius: 4px;
        font-size: 16px;
        font-weight: bold;
        
    }

    .badge.solid { background-color: #0ebe83; color: white; padding: 6px 16px; border: solid 2px #0ebe83; }
    .badge.outline { border: 2px solid #0ebe83; color: #0ebe83; padding: 6px 40px; }

    .article-title {
        color: #090097;
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.2;
        font-weight: bold;
        border-left: 5px solid #0ebe83;
        padding-left: 15px;
    }

    .author-info {
        color: #090097;
        font-weight: bold;
        font-style: normal;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .text-content p {
        margin-bottom: 5px;
        color: #000000;
        font-size: 20px;
    }

    .video-container {
        width: 100%;
        aspect-ratio: 16 / 9;
        background-color: #000;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        margin-top: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: solid 1px #0ebe83;
    }

    .video-placeholder-img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        opacity: 0.7;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: blur(5px);
    }

    .play-icon {
        width: 0;
        height: 0;
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
        border-left: 28px solid white;
        margin-left: 8px;
    }

    .sidebar {
        border-left: 1px solid #cbcbcb;
        padding-left: 40px;
    }

    .sidebar-title {
        color: #090097;
        font-size: 22px;
        display: inline-block;
        margin-bottom: 40px;
        padding-bottom: 8px;
        font-weight: bold;
        position: relative;
    }

    .sidebar-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 4px;
        width: 43%;
        background-color: #0ebe83;
    }

    .sidebar-item {
        display: flex;
        gap: 15px;
        margin-bottom: 45px;
    }

    .sidebar-item.last {
        margin-bottom: 0 !important;
    }

    .sidebar-thumb {
        width: 110px;
        height: 70px;
        background-color: #e0e0e0;
        border-radius: 6px;
        flex-shrink: 0;
        background-size: 110px;
        background-position: center;
        /* border: solid 1px #0ebe83; */
    }


    .sidebar-text h4 {
        font-size: 15px;
        color: #151766;
        margin-bottom: 6px;
        line-height: 1.3;
        font-weight: bold;
    }

    .sidebar-text p {
        font-size: 14px;
        color: #151766;
    }

    @media (max-width: 1024px) {
        .main-banner-content { flex-direction: column; gap: 30px; text-align: center; }
        .content-container { grid-template-columns: 1fr; }
        .sidebar { border-left: none; padding-left: 0; border-top: 1px solid #eeeeee; padding-top: 40px; }
    }

    @media (max-width: 720px) {
        .logo-left img {
            width: 230px;
        }

        .header-center .box {
            font-size: 19px !important;
        }
        .article-title {
            font-size: 22px !important;
        }
        .author-info {
            font-size: 18px !important;
        }
        .text-content p {
            font-size: 18px !important;
        }
    }


    .pub-ban {
        display: none;
    }

    .bordered {
        border-bottom: 1px solid #0ebe83;
        padding-bottom: 20px;
    }




.cb-component-block {
    font-family: "Arial", Sans-serif;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.cb-component-block * {
    box-sizing: border-box;
}

.cb-tags-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-top: 25px;
}

.cb-tag {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.cb-badge-green {
    background-color: #00bfa5;
    color: white;
}

.cb-badge-outline {
    border: 1px solid #00bfa5;
    color: #00bfa5;
    background: transparent;
}

.cb-featured-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    margin-top: 40px;
}

@media (max-width: 850px) {
    .cb-featured-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cb-featured-video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: solid 1px #0ebe83;
}

.cb-play-button {
    background: rgba(255, 255, 255, 0.25);
    border: 3px solid #ffffff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cb-play-button:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.4);
}

.cb-featured-text h2 {
    color: #090097;
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: bold;
    border-left: 5px solid #0ebe83;
    padding-left: 15px;
}

.cb-featured-text h3 {
    color: #090097;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 10px;
    font-size: 20px;
}

.cb-featured-text p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

.cb-grid-section {
    background-color: #e8f7f4;
    border-radius: 16px;
    padding: 40px;
}

.cb-grid-section-title {
    color: #0b22a2;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.cb-grid-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 83px;
    height: 4px;
    background-color: #00bfa5;
}

.cb-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}

@media (max-width: 992px) {
    .cb-video-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .cb-video-grid { grid-template-columns: repeat(2, 1fr); }
    .cb-grid-section { padding: 20px; }
}
@media (max-width: 480px) {
    .cb-video-grid { grid-template-columns: 1fr; }
}

.cb-video-card {
    display: flex;
    flex-direction: column;
}

.cb-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #cccccc;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 12px;
}

.cb-card-text a {
    text-decoration: none;
    color: #0b22a2;
}

.cb-card-text h4 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    color: #151766;
}

.cb-card-text p {
    font-size: 14px;
    color: #151766;
}

.romainfouache { background-image: url(https://itni.ead01.com/landingpage/img/Romain-Fouache-v.png); }
.regiscastagne { background-image: url(https://itni.ead01.com/landingpage/img/Regis-Castagne-v.png); }
.erichaddad { background-image: url(https://itni.ead01.com/landingpage/img/Eric-Haddad-v.png); }
.christophetr { background-image: url(https://itni.ead01.com/landingpage/img/Christophe-Tourret-v.png); }
.charleshenry { background-image: url(https://itni.ead01.com/landingpage/img/Charles-Henry-v.png); }
.alainvalluy { background-image: url(https://itni.ead01.com/landingpage/img/Alain-Valluy-v.png); }
.fredericclaret { background-image: url(https://itni.ead01.com/landingpage/img/Frederic-Claret-v.png); }
.jeromebouvet { background-image: url(https://itni.ead01.com/landingpage/img/Jerome-Bouvet-v.png); }
.benjaminclaus { background-image: url(https://itni.ead01.com/landingpage/img/Benjamin-Claus-v.png); }
.yveslajouanie { background-image: url(https://itni.ead01.com/landingpage/img/Yves-Lajouanie-a.png); }
.damienlasou { background-image: url(https://itni.ead01.com/landingpage/img/Damien-Lasou-v.png); }
.patrickrohrbasser { background-image: url(https://itni.ead01.com/landingpage/img/Patrick-Rohrbasser-v.png); }
.didierpichon { background-image: url(https://itni.ead01.com/landingpage/img/Didier-Pichon-v.png); }




.cb-card-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


body {
    background-color: #ffffff !important;
    background: #ffffff;
}


.cb-card-text h4:hover {
    text-decoration: underline;
}