/* ============================================================
 * 1. LE PETIT DÉTAIL MAGAZINE : LA LETTRINE
 * ============================================================ */
.ch-v3-reading-zone > .ch-v3-p:first-of-type::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 0.2rem;
    padding-right: 0.5rem;
    color: var(--v3-color-brand);
    font-family: var(--v3-font-text);
    font-weight: bold;
}

/* ============================================================
 * 2. TYPOGRAPHIE ET PARAGRAPHES (Resserrés)
 * ============================================================ */
.ch-v3-p,
.ch-v3-text {
    font-family: var(--v3-font-text);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--v3-text);
}

.ch-v3-reading-zone ul,
.ch-v3-reading-zone ol {
    font-family: var(--v3-font-text);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--v3-text);
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.ch-v3-reading-zone li {
    margin-bottom: 0.5rem;
}

.ch-v3-reading-zone a {
    color: var(--v3-color-brand);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.ch-v3-reading-zone a:hover {
    border-bottom-color: var(--v3-color-brand);
    background-color: rgba(255, 98, 51, 0.1);
}

/* --- H2 : Les grands titres de section --- */
.ch-v3-h2 {
    font-family: var(--v3-font-text);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 3.5rem 0 1.5rem 0; /* Bien aéré au-dessus pour casser le texte */
    padding-bottom: 0.8rem;
    line-height: 1.3;
    color: var(--v3-text);
    position: relative;
    clear: both;
}

/* Le liseré coloré chic sous les H2 */
.ch-v3-h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--v3-color-brand);
    border-radius: 2px;
}

/* --- H3 : Les sous-titres --- */
.ch-v3-h3 {
    font-family: var(--v3-font-text);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    color: var(--v3-text);
    padding-left: 1rem;
    border-left: 3px solid var(--v3-color-brand); /* Ligne discrète à gauche */
    clear: both;
}

/* ============================================================
 * 3. CITATIONS PREMIUM (Design épuré et resserré)
 * ============================================================ */
.ch-v3-quote {
    position: relative;
    font-family: var(--v3-font-text);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--v3-text);
    margin: 2rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-left: 4px solid var(--v3-color-brand);
    background: transparent;
    text-align: left;
    clear: both;
}

.ch-v3-quote p {
    margin: 0;
}


/* ============================================================
 * 4. BLOC ENCADRÉ
 * ============================================================ */
.ch-v3-encadre,
.encadre {
    background: var(--v3-surface);
    border: 1px solid var(--v3-border);
    border-top: 4px solid var(--v3-color-brand);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    font-family: var(--v3-font-ui);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--v3-text);
    clear: both;
}

.ch-v3-encadre p:last-child,
.encadre p:last-child {
    margin-bottom: 0;
}

/* ============================================================
 * 5. IMAGES (Centrage absolu)
 * ============================================================ */
.ch-v3-clear {
    clear: both;
}

.ch-v3-figure {
    margin: 1.5rem 0;
    clear: both;
    display: block;
    width: 100%;
    text-align: center;
}

.ch-v3-figure img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--v3-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ch-v3-figure figcaption {
    text-align: center;
    font-family: var(--v3-font-ui);
    font-size: 0.85rem;
    color: var(--v3-text-mut);
    margin-top: 0.5rem;
    font-style: italic;
    width: 100%;
}

.ch-v3-figure.align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 768px) {
    .ch-v3-figure.align-left {
        float: left;
        margin: 0.5rem 2rem 1rem 0;
        max-width: 50%;
        clear: none;
        width: auto;
    }

    .ch-v3-figure.align-right {
        float: right;
        margin: 0.5rem 0 1rem 2rem;
        max-width: 50%;
        clear: none;
        width: auto;
    }

    .ch-v3-figure.ch-v3-img-small {
        width: 35%;
        min-width: 250px;
    }

    .ch-v3-figure.ch-v3-img-medium {
        width: 60%;
        min-width: 350px;
    }

    .ch-v3-figure.ch-v3-img-full {
        width: 100%;
        max-width: none;
    }
}

/* ============================================================
 * X) HR (V3)
 * ============================================================ */
.ch-v3-hr{
    border: 0;
    border-top: 1px solid var(--v3-border);
    margin: 2rem 0;
    clear: both;
}

/* ============================================================
 * X) IMAGES GRID (V3) — 2-up / 3-up / 4-up
 * ============================================================ */
.ch-v3-images-grid{
    margin: 1.5rem 0;
    clear: both;
}

/* Dans une grille, on neutralise les comportements "float" */
.ch-v3-images-grid .ch-v3-figure{
    margin: 0;
    width: 100%;
    max-width: none;
    float: none !important;
    clear: none !important;
    text-align: center;
}

/* Garde les images propres dans la grille */
.ch-v3-images-grid .ch-v3-figure img{
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Responsive : on force 1 colonne sur mobile (même si inline style met 2/3/4 cols) */
@media (max-width: 720px){
    .ch-v3-images-grid{
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
 * 6. INFOBOX
 * ============================================================ */
.ch-v3-infobox {
    background-color: var(--v3-surface);
    border-radius: var(--v3-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    border: 1px solid var(--v3-border);
    clear: both;
}

.ch-v3-infobox-icon i {
    font-size: 1.5rem;
    color: var(--v3-color-brand);
}

.ch-v3-infobox-wrapper {
    width: 100%;
}

.ch-v3-infobox-content {
    font-family: var(--v3-font-ui);
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--v3-text);
}

.ch-v3-infobox-img {
    border-radius: 8px;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .ch-v3-infobox-img.pos-left {
        float: left;
        margin: 0 1.5rem 1rem 0;
    }

    .ch-v3-infobox-img.pos-right {
        float: right;
        margin: 0 0 1rem 1.5rem;
    }
}

/* ============================================================
 * 7A. POP QUIZ (V3)
 * ============================================================ */
.ch-v3-pop-quiz{
    background: var(--v3-surface);
    border: 1px solid var(--v3-border);
    padding: 1.5rem;
    border-radius: var(--v3-radius);
    margin: 2rem 0;
    font-family: var(--v3-font-ui);
    clear: both;
}

.ch-v3-pop-quiz h3{
    margin: 0 0 0.75rem 0;
    color: var(--v3-color-brand);
}

.quiz-toggle{
    display: none;
}

.quiz-cta{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;

    color: #fff;
    background: var(--v3-text);
    padding: 8px 14px;
    border-radius: 6px;

    font-weight: 700;
    margin: 0.75rem 0 0;
    user-select: none;
}

.quiz-cta:focus-visible{
    outline: 2px solid var(--v3-color-brand);
    outline-offset: 3px;
}

.quiz-cta .hide{ display: none; }
.quiz-toggle:checked + .quiz-cta .show{ display: none; }
.quiz-toggle:checked + .quiz-cta .hide{ display: inline; }

.quiz-answers-wrap{
    display: none;
    margin-top: 1rem;

    background: color-mix(in srgb, var(--v3-color-brand) 12%, var(--v3-surface));
    border: 1px solid var(--v3-border);
    padding: 1rem;
    border-radius: calc(var(--v3-radius) - 2px);
}

.quiz-toggle:checked ~ .quiz-answers-wrap{
    display: block;
}


/* ============================================================
 * 7B. TABLEAUX (V3) — responsive + plus élégant
 * ============================================================ */
.ch-v3-table-responsive{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    margin: 2rem 0;
    clear: both;

    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius);
    background: var(--v3-surface);
}

/* IMPORTANT : min-width => scroll horizontal au lieu de “rattatiner” */
.ch-v3-table{
    width: 100%;
    min-width: 600px;

    border-collapse: separate;
    border-spacing: 0;

    font-family: var(--v3-font-ui);
    font-size: 0.95rem;
    text-align: left;

    background: transparent;
}

.ch-v3-table thead th{
    position: sticky;
    top: 0;
    z-index: 1;

    background: color-mix(in srgb, var(--v3-surface) 92%, var(--v3-text) 8%);
    color: var(--v3-text);

    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid var(--v3-border);
    white-space: nowrap;
    font-weight: 700;
}

.ch-v3-table td{
    padding: 0.75rem 0.9rem;
    border-bottom: 1px solid var(--v3-border);
    color: var(--v3-text-mut);
    vertical-align: top;
}

/* zébrage + hover léger */
.ch-v3-table tbody tr:nth-child(even){
    background: color-mix(in srgb, var(--v3-surface) 94%, var(--v3-text) 6%);
}
.ch-v3-table tbody tr:hover{
    background: color-mix(in srgb, var(--v3-color-brand) 7%, var(--v3-surface));
}

/* coins arrondis sur le header */
.ch-v3-table thead th:first-child{ border-top-left-radius: var(--v3-radius); }
.ch-v3-table thead th:last-child { border-top-right-radius: var(--v3-radius); }

/* mobile : densité + min-width plus petite */
@media (max-width: 640px){
    .ch-v3-table{ min-width: 480px; font-size: 0.92rem; }
    .ch-v3-table thead th{ padding: 0.75rem 0.8rem; }
    .ch-v3-table td{ padding: 0.7rem 0.8rem; }
}
/* ============================================================
 * 8. MODULES ADDITIONNELS (Ad, FAQ, Author, Votes)
 * ============================================================ */
.ch-v3-ad-wrapper {
    display: block;
    width: 100%;
    margin: 2rem auto;
    aspect-ratio: 1/1;
    clear: both;
}

@media(min-width: 500px) {
    .ch-v3-ad-wrapper {
        aspect-ratio: 1200/250;
    }
}

.ch-v3-faq {
    margin: 3rem 0;
    background: var(--v3-surface);
    border-radius: var(--v3-radius);
    border: 1px solid var(--v3-border);
    padding: 2rem;
    clear: both;
}

.ch-v3-faq-title {
    font-family: var(--v3-font-text);
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    border-bottom: 2px solid var(--v3-border);
    padding-bottom: 1rem;
    color: var(--v3-text);
}

.ch-v3-faq-item {
    border-bottom: 1px solid var(--v3-border);
}

.ch-v3-faq-item:last-child {
    border-bottom: none;
}

.ch-v3-faq-q {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    font-family: var(--v3-font-ui);
    font-weight: 600;
    color: var(--v3-text);
}

.ch-v3-faq-q::-webkit-details-marker {
    display: none;
}

.ch-v3-faq-item[open] i {
    transform: rotate(180deg);
    color: var(--v3-color-brand);
}

.ch-v3-faq-a {
    padding-bottom: 1rem;
    font-family: var(--v3-font-text);
    color: var(--v3-text-mut);
}

/* ============================================================
 * AUTHOR BOX (V3) — Profil + Réseaux + CTA (robuste)
 * ============================================================ */

.ch-v3-author-box{
    display:flex;
    align-items:center;
    gap:1.25rem;

    background: var(--v3-surface);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius);

    padding: 1.5rem;
    margin: 3rem 0;

    clear: both;
}

@media (max-width: 640px){
    .ch-v3-author-box{
        flex-direction: column;
        align-items: flex-start;
    }
}

.ch-v3-author-avatar{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;

    border: 1px solid var(--v3-border);
    background: var(--v3-bg);
}

/* Contenu */
.ch-v3-author-info{
    flex: 1;
    min-width: 0;
}

.ch-v3-author-label{
    display:inline-block;
    margin: 0 0 .25rem 0;

    font-family: var(--v3-font-ui);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;

    color: var(--v3-text-mut);
}

.ch-v3-author-name{
    margin: .2rem 0 .35rem 0;

    font-family: var(--v3-font-ui);
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.2;

    color: var(--v3-text);
}

/* IMPORTANT : sur-spécifie pour battre .ch-v3-reading-zone a */
.ch-v3-author-box .ch-v3-author-name a{
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    font-weight: inherit;
    background: transparent;
    transition: border-color .15s ease, background-color .15s ease;
}

.ch-v3-author-box .ch-v3-author-name a:hover{
    border-bottom-color: var(--v3-color-brand);
    background: color-mix(in srgb, var(--v3-color-brand) 10%, transparent);
}

.ch-v3-author-role{
    margin: 0;

    font-family: var(--v3-font-text);
    font-size: .98rem;
    line-height: 1.5;

    color: var(--v3-text-mut);
    font-style: italic;
}

/* Réseaux */
.ch-v3-author-socials{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top: 10px;
}

/* IMPORTANT : sur-spécifie pour battre .ch-v3-reading-zone a */
.ch-v3-author-box .ch-v3-social-link{
    width: 38px;
    height: 38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    border: 1px solid var(--v3-border);
    border-radius: 999px;
    background: var(--v3-bg);

    text-decoration: none;
    border-bottom: 0;              /* neutralise styles links globaux */
    font-weight: 800;              /* neutralise styles links globaux */
    line-height: 1;                /* évite décalages */

    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
}

.ch-v3-author-box .ch-v3-social-link:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
    border-color: color-mix(in srgb, var(--v3-color-brand) 55%, var(--v3-border));
}

.ch-v3-author-box .ch-v3-social-link:focus-visible{
    outline: 2px solid var(--v3-color-brand);
    outline-offset: 3px;
}

/* La taille icône (FontAwesome svg/i) */
.ch-v3-author-box .ch-v3-social-link i,
.ch-v3-author-box .ch-v3-social-link svg{
    font-size: 1.05rem;
}

/* Couleurs réseaux */
.ch-v3-author-box .ch-v3-social-link.is-instagram{ color:#E1306C; }
.ch-v3-author-box .ch-v3-social-link.is-facebook{  color:#1877F2; }
.ch-v3-author-box .ch-v3-social-link.is-youtube{   color:#FF0000; }
.ch-v3-author-box .ch-v3-social-link.is-linkedin{  color:#0A66C2; }
.ch-v3-author-box .ch-v3-social-link.is-x{         color: var(--v3-text); }
.ch-v3-author-box .ch-v3-social-link.is-website{   color: var(--v3-color-brand); }

/* TikTok lisible */
.ch-v3-author-box .ch-v3-social-link.is-tiktok{ color:#111827; }
html[data-theme="dark"] .ch-v3-author-box .ch-v3-social-link.is-tiktok,
body[data-theme="dark"] .ch-v3-author-box .ch-v3-social-link.is-tiktok{
    color:#ffffff;
}

/* CTA */
.ch-v3-author-actions{ margin-top: 12px; }

/* IMPORTANT : sur-spécifie pour battre .ch-v3-reading-zone a */
.ch-v3-author-box .ch-v3-author-btn{
    display:inline-flex;
    align-items:center;
    gap:.55rem;

    padding: 8px 12px;
    border: 1px solid var(--v3-border);
    border-radius: 999px;

    background: var(--v3-bg);
    color: var(--v3-text);

    text-decoration:none;
    border-bottom: 0;
    font-weight: 900;

    font-family: var(--v3-font-ui);
    font-size: .92rem;

    transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
}

.ch-v3-author-box .ch-v3-author-btn:hover{
    transform: translateY(-1px);
    border-color: var(--v3-color-brand);
    background: color-mix(in srgb, var(--v3-color-brand) 10%, var(--v3-bg));
}

.ch-v3-author-box .ch-v3-author-btn i,
.ch-v3-author-box .ch-v3-author-btn svg{
    color: var(--v3-color-brand);
    font-size: .95rem;
}

/* Accessibilité : texte caché (ton "Instagram" ne doit plus s’afficher) */
.sr{
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    padding:0 !important;
    margin:-1px !important;
    overflow:hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space:nowrap !important;
    border:0 !important;
}

/* MODULE VOTE (Bouton Unique Pouce en l'air) */
.ch-v3-votes-module {
    margin: 3rem auto;
    padding: 1.5rem;
    background: var(--v3-surface);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    text-align: center;
    clear: both;
}

.ch-v3-votes-label {
    font-family: var(--v3-font-ui);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--v3-text);
    font-size: 1.1rem;
}

.ch-v3-votes-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-thumb {
    background: var(--v3-bg);
    border: 1px solid var(--v3-border);
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--v3-text-mut);
    transition: all 0.2s;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-thumb:hover:not(:disabled) {
    color: var(--v3-color-brand);
    border-color: var(--v3-color-brand);
    background: rgba(255, 98, 51, 0.1);
    transform: translateY(-2px);
}

.btn-thumb:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.thumb-score {
    font-family: var(--v3-font-ui);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--v3-text);
    min-width: 40px;
}

/* ============================================================
 * BLOC DE PARTAGE INTERNE (Mise en avant dans l'article)
 * ============================================================ */
.ch-v3-article-share {
    background: var(--v3-surface);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    clear: both;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.ch-v3-article-share-title {
    font-family: var(--v3-font-text);
    font-size: 1.4rem;
    color: var(--v3-text);
    margin: 0 0 1.5rem 0;
}

/* Sur ordinateur : on aligne les 6 boutons sur une seule ligne */
@media (min-width: 768px) {
    .ch-v3-article-share .share-buttons-premium {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ================================================================
 * F) BLOC COMMUNAUTÉ (V3) — SANS ARRONDI
 * ================================================================ */
.bloc-communaute{
    max-width: 72ch;
    margin: 2.5rem auto 0;
    padding: 1.5rem;

    background: var(--v3-surface);
    border: 1px solid var(--v3-border);
    border-radius: 0;

    border-top: 5px solid var(--v3-color-brand);

    font-family: var(--v3-font-ui);
    color: var(--v3-text);

    clear: both;
}

.bloc-communaute h4{
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--v3-color-brand);
    line-height: 1.3;
}

.bloc-communaute p{
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--v3-text);
}

.bloc-communaute p:last-child{
    margin-bottom: 0;
}

.bloc-communaute .contact-links{
    margin-top: 1rem;
}

.bloc-communaute .contact-links p{
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.bloc-communaute .contact-links a{
    font-weight: 700;
}

/* ============================================================
 * 9. BLOC TÉLÉCHARGEMENT (V3)
 * ============================================================ */
.ch-v3-download-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    background: var(--v3-surface);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius);
    /* Petite touche brand pour faire écho à l'encadré ou la citation */
    border-left: 4px solid var(--v3-color-brand);

    padding: 1.5rem;
    margin: 2.5rem 0;
    clear: both;
}

/* Sur tablette et bureau, on passe en ligne */
@media (min-width: 600px) {
    .ch-v3-download-box {
        flex-direction: row;
        align-items: center;
    }
}

.ch-v3-download-preview {
    flex: 0 0 120px; /* Taille fixe pour la vignette */
    border-radius: 8px; /* Un peu moins que le radius principal pour l'esthétique */
    overflow: hidden;
    border: 1px solid var(--v3-border);
    background: var(--v3-bg);
}

.ch-v3-download-preview img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ch-v3-download-content {
    flex: 1;
    min-width: 0; /* Évite les débordements de texte en flexbox */
}

.ch-v3-download-title {
    margin: 0 0 0.5rem 0;
    font-family: var(--v3-font-ui);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--v3-text);
    line-height: 1.3;
}

.ch-v3-download-desc {
    margin: 0 0 1.25rem 0;
    font-family: var(--v3-font-ui);
    font-size: 0.95rem;
    color: var(--v3-text-mut);
    line-height: 1.6;
}

/* * Le bouton reprend les codes de ta charte
 * IMPORTANT : on sur-spécifie pour battre le '.ch-v3-reading-zone a' global
 */
.ch-v3-download-box .ch-v3-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;

    padding: 10px 18px;
    border-radius: 8px;
    background: var(--v3-color-brand);
    color: #fff;

    text-decoration: none;
    border-bottom: 0;
    font-weight: 700;
    font-family: var(--v3-font-ui);
    font-size: 0.95rem;

    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.ch-v3-download-box .ch-v3-btn-download:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    /* Ombre subtile aux couleurs de ta marque (mixée via rgb pour coller au orange) */
    box-shadow: 0 6px 15px rgba(255, 98, 51, 0.25);
    background-color: var(--v3-color-brand); /* Sécurité pour contrer le hover global */
}

.ch-v3-download-box .ch-v3-btn-download i {
    font-size: 1.05rem;
}
