/* ============================================
   83-629.fr - STYLES v9.7
   ============================================ */

/* ============================================
   BANNIÈRE HAUT DE PAGE
   ============================================ */

.gh-top-banner {
    background: linear-gradient(135deg, #0A1E3D 0%, #1a3a5c 100%) !important;
    padding: 14px 20px !important;
    text-align: center !important;
    border-bottom: 3px solid #C1121F !important;
}

.gh-top-banner__container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.gh-top-banner__logo-link {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.gh-top-banner__logo {
    height: 45px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
}

.gh-top-banner__tagline {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    opacity: 0.95 !important;
}

@media (max-width: 768px) {
    .gh-top-banner { padding: 12px 16px !important; }
    .gh-top-banner__container { gap: 14px !important; }
    .gh-top-banner__logo { height: 35px !important; }
    .gh-top-banner__tagline { font-size: 13px !important; }
}

@media (max-width: 480px) {
    .gh-top-banner__container { flex-direction: column !important; gap: 8px !important; }
    .gh-top-banner__tagline { font-size: 11px !important; }
}

/* ============================================
   NAVIGATION - STYLE PRO ÉLÉGANT
   ============================================ */

.gh-nav-list-item__link,
.gh-nav-list-item__button {
    position: relative !important;
    padding: 10px 16px !important;
    font-weight: 500 !important;
    color: var(--color-main, #1a1a1a) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

/* Ligne animée sous le lien */
.gh-nav-list-item__link::after,
.gh-nav-list-item__button::after {
    content: '' !important;
    position: absolute !important;
    bottom: 4px !important;
    left: 16px !important;
    right: 16px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #C1121F 0%, #e63946 100%) !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 1px !important;
}

.gh-nav-list-item__link:hover,
.gh-nav-list-item__button:hover {
    color: #C1121F !important;
}

.gh-nav-list-item__link:hover::after,
.gh-nav-list-item__button:hover::after {
    transform: scaleX(1) !important;
}

/* Sous-menus navigation - Style PRO */
.gh-nav-list-item-submenu {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    min-width: 240px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.05) !important;
    padding: 8px !important;
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1000 !important;
}

/* Flèche du dropdown */
.gh-nav-list-item-submenu::before {
    content: '' !important;
    position: absolute !important;
    top: -6px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid #ffffff !important;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05)) !important;
}

.gh-nav-list-item:hover .gh-nav-list-item-submenu {
    display: block !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

.gh-nav-list-item-submenu__item {
    margin: 0 !important;
    padding: 0 !important;
}

.gh-nav-list-item-submenu__item-link {
    display: flex !important;
    align-items: center !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.gh-nav-list-item-submenu__item-link::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 3px !important;
    background: #C1121F !important;
    transform: scaleY(0) !important;
    transition: transform 0.2s ease !important;
    border-radius: 0 3px 3px 0 !important;
}

.gh-nav-list-item-submenu__item-link:hover {
    background: linear-gradient(90deg, rgba(193, 18, 31, 0.08) 0%, transparent 100%) !important;
    color: #C1121F !important;
    padding-left: 20px !important;
}

.gh-nav-list-item-submenu__item-link:hover::before {
    transform: scaleY(1) !important;
}

:root[data-theme='dark'] .gh-nav-list-item-submenu {
    background: #1f2937 !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

:root[data-theme='dark'] .gh-nav-list-item-submenu::before {
    border-bottom-color: #1f2937 !important;
}

:root[data-theme='dark'] .gh-nav-list-item-submenu__item-link {
    color: #e5e7eb !important;
}

:root[data-theme='dark'] .gh-nav-list-item-submenu__item-link:hover {
    background: linear-gradient(90deg, rgba(193, 18, 31, 0.15) 0%, transparent 100%) !important;
    color: #ff6b7a !important;
}

/* Flèche dropdown bouton */
.gh-nav-list-item--submenu .gh-nav-list-item__button::before {
    content: '' !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 5px solid currentColor !important;
    margin-left: 6px !important;
    transition: transform 0.3s ease !important;
    vertical-align: middle !important;
}

.gh-nav-list-item--submenu:hover .gh-nav-list-item__button::before {
    transform: rotate(180deg) !important;
}

/* ============================================
   FOOTER - STYLE PRO COHÉRENT
   ============================================ */

.gh-footer a,
.gh-footer-nav-link,
footer a {
    position: relative !important;
    color: var(--color-secondary, #6b7280) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.gh-footer a::after,
.gh-footer-nav-link::after,
footer a:not(.gh-social-link)::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100% !important;
    height: 1px !important;
    background: #C1121F !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.3s ease !important;
}

.gh-footer a:hover,
.gh-footer-nav-link:hover,
footer a:hover {
    color: #C1121F !important;
}

.gh-footer a:hover::after,
.gh-footer-nav-link:hover::after,
footer a:not(.gh-social-link):hover::after {
    transform: scaleX(1) !important;
}

/* Social icons footer */
.gh-footer .gh-social-link,
.gh-footer-social-link {
    transition: all 0.3s ease !important;
}

.gh-footer .gh-social-link:hover,
.gh-footer-social-link:hover {
    transform: translateY(-3px) !important;
}

.gh-footer .gh-social-link:hover svg,
.gh-footer-social-link:hover svg {
    fill: #C1121F !important;
}

/* ============================================
   TAGS/CATÉGORIES - DISCRET ET ÉLÉGANT
   ============================================ */

.gh-tags-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    align-items: center !important;
}

.gh-tags-wrapper svg { display: none !important; }

.gh-tag-link {
    display: inline-block !important;
    padding: 2px 8px !important;
    background: transparent !important;
    color: #6b7280 !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 3px !important;
    border: 1px solid rgba(107, 114, 128, 0.3) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.gh-tag-link:hover {
    background: #C1121F !important;
    color: white !important;
    border-color: #C1121F !important;
    box-shadow: 0 2px 8px rgba(193, 18, 31, 0.3) !important;
}

:root[data-theme='dark'] .gh-tag-link {
    color: #9ca3af !important;
    border-color: rgba(156, 163, 175, 0.3) !important;
}

:root[data-theme='dark'] .gh-tag-link:hover {
    background: #C1121F !important;
    color: white !important;
    border-color: #C1121F !important;
}

.gh-tags-more { position: relative !important; display: inline-block !important; }

.gh-tags-more-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 20px !important;
    height: 18px !important;
    padding: 2px 5px !important;
    background: transparent !important;
    color: #6b7280 !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
    border: 1px solid rgba(107, 114, 128, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.gh-tags-more:hover .gh-tags-more-btn {
    background: #C1121F !important;
    color: white !important;
    border-color: #C1121F !important;
}

.gh-tags-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 6px !important;
    padding: 8px !important;
    background: white !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    display: none !important;
    flex-direction: column !important;
    gap: 4px !important;
    min-width: 120px !important;
    z-index: 100 !important;
}

.gh-tags-more:hover .gh-tags-dropdown { display: flex !important; }

:root[data-theme='dark'] .gh-tags-dropdown { background: #1f2937 !important; }

.gh-post-page__header .gh-tag-link {
    padding: 3px 10px !important;
    font-size: 10px !important;
}

/* ============================================
   EFFETS HOVER ARTICLES - UNIQUEMENT LISTES
   ============================================ */

/* Conteneurs overflow visible */
.gh-hero-wrapper--grid,
.gh-hero-wrapper--featured-type-9-2,
.gh-hero-wrapper--featured-type-10-4,
.gh-container--section .gh-container,
.gh-post-page__more-posts,
.gh-archive-page-posts-feed {
    overflow: visible !important;
}

/* Effets UNIQUEMENT sur les listes d'articles */
.gh-hero-wrapper--grid article.post,
.gh-hero-wrapper--featured-type-9-2 article.post,
.gh-container--section article.post,
.gh-post-page__more-posts article.post,
.gh-archive-page-posts-feed article.post,
.gh-archive-page-post {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 12px !important;
}

.gh-hero-wrapper--grid article.post:hover,
.gh-hero-wrapper--featured-type-9-2 article.post:hover,
.gh-container--section article.post:hover,
.gh-post-page__more-posts article.post:hover,
.gh-archive-page-posts-feed article.post:hover,
.gh-archive-page-post:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(193, 18, 31, 0.12), 0 8px 16px rgba(193, 18, 31, 0.08) !important;
    z-index: 10 !important;
}

/* Zoom image - UNIQUEMENT listes */
.gh-hero-wrapper--grid article.post .gh-card-image,
.gh-hero-wrapper--featured-type-9-2 article.post .gh-card-image,
.gh-container--section article.post .gh-card-image,
.gh-post-page__more-posts article.post .gh-card-image,
.gh-archive-page-posts-feed article.post .gh-card-image,
.gh-archive-page-post .gh-archive-page-post-image {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.gh-hero-wrapper--grid article.post:hover .gh-card-image,
.gh-hero-wrapper--featured-type-9-2 article.post:hover .gh-card-image,
.gh-container--section article.post:hover .gh-card-image,
.gh-post-page__more-posts article.post:hover .gh-card-image,
.gh-archive-page-posts-feed article.post:hover .gh-card-image,
.gh-archive-page-post:hover .gh-archive-page-post-image {
    transform: scale(1.08) !important;
}

/* Titre rouge au survol - UNIQUEMENT listes */
.gh-hero-wrapper--grid article.post:hover .gh-featured-post__title,
.gh-hero-wrapper--featured-type-9-2 article.post:hover .gh-featured-post__title,
.gh-container--section article.post:hover .gh-featured-post__title,
.gh-post-page__more-posts article.post:hover .gh-featured-post__title,
.gh-archive-page-posts-feed article.post:hover .gh-featured-post__title,
.gh-archive-page-post:hover .gh-archive-page-post-title-link {
    color: #C1121F !important;
}

/* Image wrapper overflow */
.gh-hero-wrapper--grid article.post .gh-card-image-wrapper,
.gh-hero-wrapper--featured-type-9-2 article.post .gh-card-image-wrapper,
.gh-container--section article.post .gh-card-image-wrapper,
.gh-post-page__more-posts article.post .gh-card-image-wrapper,
.gh-archive-page-posts-feed article.post .gh-card-image-wrapper,
.gh-archive-page-post .gh-archive-page-post-image-wrapper-link {
    overflow: hidden !important;
    border-radius: 8px !important;
}

/* ============================================
   PAS D'EFFET DANS L'ARTICLE LUI-MÊME
   ============================================ */

.gh-post-page article.post,
.gh-post-page--wrapper article.post,
.gh-post-page__article {
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
}

.gh-post-page article.post:hover,
.gh-post-page--wrapper article.post:hover,
.gh-post-page__article:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ============================================
   ARTICLE - CHEVAUCHEMENT SUR L'IMAGE
   ============================================ */

.gh-post-page--featured .gh-post-page__article {
    position: relative !important;
    margin-top: -80px !important;
    background: var(--color-bg-main, #ffffff) !important;
    border-radius: 20px 20px 0 0 !important;
    padding-top: 40px !important;
    z-index: 10 !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08) !important;
}

:root[data-theme='dark'] .gh-post-page--featured .gh-post-page__article {
    background: var(--color-bg-main, #1a1a1a) !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3) !important;
}

.gh-post-page__featured-img {
    margin-bottom: 0 !important;
}

/* ============================================
   SIDEBAR ARTICLES
   ============================================ */

.gh-latest-post--default {
    transition: all 0.3s ease !important;
    padding: 12px !important;
    margin: -12px !important;
    border-radius: 8px !important;
}

.gh-latest-post--default:hover {
    background: rgba(193, 18, 31, 0.04) !important;
    transform: translateX(4px) !important;
}

/* ============================================
   SUPPRESSION DES ANCIENS BADGES
   ============================================ */

.gh-access-badge--premium,
.gh-access-badge--free,
.gh-card-badge,
.gh-post-badge {
    display: none !important;
}

/* ============================================
   BADGES EXPERT + SENTINELLE
   ============================================ */

.gh-access-badges-container {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 100 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-end !important;
}

.gh-access-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 5px 12px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
}

.gh-access-badge--expert {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #FFD700 100%) !important;
    color: #1a1a1a !important;
    box-shadow: 0 3px 12px rgba(184, 134, 11, 0.5) !important;
}

.gh-access-badge--sentinelle {
    background: linear-gradient(135deg, #4a5568 0%, #718096 100%) !important;
    color: white !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) !important;
}

.gh-access-badge--libre {
    background: linear-gradient(135deg, #059669 0%, #10B981 50%, #34D399 100%) !important;
    color: white !important;
    box-shadow: 0 3px 12px rgba(16, 185, 129, 0.5) !important;
}

/* ============================================
   EFFET FONDU TEXTE AVANT CTA
   ============================================ */

.gh-post-content-fade { position: relative !important; }

.gh-post-content-fade::before {
    content: '' !important;
    position: absolute !important;
    top: -250px !important;
    left: 0 !important;
    right: 0 !important;
    height: 250px !important;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%) !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

:root[data-theme='dark'] .gh-post-content-fade::before {
    background: linear-gradient(to bottom, rgba(26,26,26,0) 0%, rgba(26,26,26,1) 100%) !important;
}

/* ============================================
   CTA ARTICLES PAYANTS
   ============================================ */

.gh-post-subscribe-cta {
    position: relative !important;
    z-index: 10 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    background: linear-gradient(135deg, #0A1E3D 0%, #1a3a5c 100%) !important;
    padding: 40px 48px !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(10, 30, 61, 0.25) !important;
    text-align: center !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.gh-post-subscribe-cta h2 {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.gh-post-subscribe-cta p { color: rgba(255, 255, 255, 0.85) !important; }

.gh-post-subscribe-cta-content svg path { stroke: #FFD700 !important; }

.gh-cta-options {
    display: flex !important;
    gap: 16px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin: 28px 0 !important;
}

.gh-cta-option {
    border-radius: 12px !important;
    padding: 20px 24px !important;
    min-width: 260px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.gh-cta-option:hover { transform: translateY(-4px) !important; }

.gh-cta-option--expert {
    border: 2px solid #DAA520 !important;
    background: rgba(255, 215, 0, 0.12) !important;
}

.gh-cta-option--expert .gh-cta-option-title { color: #FFD700 !important; font-weight: 800 !important; }

.gh-cta-option--sentinelle {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.gh-cta-option--sentinelle .gh-cta-option-title { color: #ffffff !important; font-weight: 800 !important; }

.gh-cta-option-desc { color: rgba(255, 255, 255, 0.7) !important; font-size: 13px !important; }

.gh-cta-option-icon, .gh-cta-option-price { display: none !important; }

.gh-post-subscribe-cta-btn {
    display: inline-block !important;
    padding: 14px 32px !important;
    background: linear-gradient(135deg, #C1121F 0%, #e63946 100%) !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.gh-post-subscribe-cta-btn:hover {
    background: linear-gradient(135deg, #a10f1a 0%, #c1121f 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.4) !important;
}

.gh-post-subscribe-cta-question__link { color: #FFD700 !important; }

@media (max-width: 640px) {
    .gh-post-subscribe-cta { padding: 32px 24px !important; }
    .gh-cta-options { flex-direction: column !important; }
}

/* ============================================
   ARTICLES SIMILAIRES FIN D'ARTICLE
   ============================================ */

.gh-post-page__more {
    margin-top: 48px !important;
    padding-top: 32px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    overflow: visible !important;
}

.gh-post-page__more-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
}

.gh-post-page__more-posts {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 24px !important;
}

/* ============================================
   MARGES PAGE /LATEST/
   ============================================ */

.gh-archive-page {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

@media (max-width: 768px) {
    .gh-archive-page { padding-left: 16px !important; padding-right: 16px !important; }
}

/* ============================================
   SIDEBAR NUMÉROTATION
   ============================================ */

.gh-post-page-aside__post-wrapper {
    list-style: none !important;
    counter-reset: article-counter !important;
}

.gh-post-page-aside__post {
    counter-increment: article-counter !important;
    position: relative !important;
    padding-left: 40px !important;
}

.gh-post-page-aside__post::before {
    content: counter(article-counter) !important;
    position: absolute !important;
    left: 0 !important;
    top: 16px !important;
    width: 28px !important;
    height: 28px !important;
    background: #f3f4f6 !important;
    color: #374151 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

:root[data-theme='dark'] .gh-post-page-aside__post::before {
    background: #374151 !important;
    color: #e5e7eb !important;
}

/* ============================================
   PACK CONFIANCE - VERSION DISCRÈTE
   ============================================ */

.gh-trust-section {
    background: transparent !important;
    color: var(--color-main, #1a1a1a) !important;
    padding: 32px 24px !important;
    margin-top: 32px !important;
    text-align: center !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

:root[data-theme='dark'] .gh-trust-section {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.gh-trust-container { max-width: 900px !important; margin: 0 auto !important; }

.gh-trust-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(193, 18, 31, 0.08) !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    margin-bottom: 12px !important;
    border: 1px solid rgba(193, 18, 31, 0.15) !important;
}

.gh-trust-badge svg { color: #C1121F !important; stroke: #C1121F !important; width: 16px !important; height: 16px !important; }
.gh-trust-badge span { color: #C1121F !important; font-weight: 600 !important; font-size: 12px !important; text-transform: uppercase !important; }

.gh-trust-title {
    color: var(--color-main, #1a1a1a) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

:root[data-theme='dark'] .gh-trust-title { color: #ffffff !important; }

.gh-trust-stats {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
}

.gh-trust-stat {
    min-width: 120px !important;
    max-width: 160px !important;
    padding: 12px 16px !important;
    background: rgba(0, 0, 0, 0.02) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

:root[data-theme='dark'] .gh-trust-stat {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.gh-trust-counter { font-size: 24px !important; font-weight: 800 !important; color: #C1121F !important; display: block !important; }
.gh-trust-label { font-size: 13px !important; font-weight: 600 !important; color: var(--color-main, #1a1a1a) !important; }
.gh-trust-detail { font-size: 11px !important; color: var(--color-secondary, #6b7280) !important; }

:root[data-theme='dark'] .gh-trust-label { color: #ffffff !important; }
:root[data-theme='dark'] .gh-trust-detail { color: rgba(255, 255, 255, 0.6) !important; }

.gh-trust-divider { display: none !important; }

.gh-trust-traffic {
    display: flex !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
    flex-wrap: wrap !important;
}

.gh-trust-traffic-number { font-size: 18px !important; font-weight: 700 !important; color: #C1121F !important; }
.gh-trust-traffic-label { font-size: 13px !important; color: var(--color-secondary, #6b7280) !important; }
.gh-trust-traffic-sep { color: rgba(0, 0, 0, 0.2) !important; }

:root[data-theme='dark'] .gh-trust-traffic-label { color: rgba(255, 255, 255, 0.7) !important; }
:root[data-theme='dark'] .gh-trust-traffic-sep { color: rgba(255, 255, 255, 0.2) !important; }

.gh-trust-audience { max-width: 700px !important; margin: 0 auto 16px !important; }
.gh-trust-audience p { font-size: 14px !important; color: var(--color-secondary, #6b7280) !important; }
.gh-trust-audience strong { color: var(--color-main, #1a1a1a) !important; }

:root[data-theme='dark'] .gh-trust-audience p { color: rgba(255, 255, 255, 0.7) !important; }
:root[data-theme='dark'] .gh-trust-audience strong { color: #ffffff !important; }

.gh-trust-certs {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin-bottom: 16px !important;
}

.gh-trust-cert {
    background: rgba(0, 0, 0, 0.04) !important;
    padding: 5px 12px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--color-secondary, #6b7280) !important;
}

:root[data-theme='dark'] .gh-trust-cert {
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Lien avis */
.gh-trust-links {
    display: flex !important;
    justify-content: center !important;
    margin-top: 16px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

:root[data-theme='dark'] .gh-trust-links {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.gh-trust-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 14px !important;
    color: #C1121F !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.gh-trust-link:hover { text-decoration: underline !important; }
.gh-trust-link svg { width: 16px !important; height: 16px !important; stroke: #C1121F !important; }

/* Médiateur */
.gh-trust-mediator {
    margin-top: 16px !important;
    font-size: 12px !important;
    color: var(--color-secondary, #6b7280) !important;
    line-height: 1.5 !important;
}

:root[data-theme='dark'] .gh-trust-mediator { color: rgba(255, 255, 255, 0.5) !important; }

.gh-trust-mediator a {
    color: #C1121F !important;
    text-decoration: none !important;
}

.gh-trust-mediator a:hover { text-decoration: underline !important; }

@media (max-width: 768px) {
    .gh-trust-section { padding: 24px 16px !important; }
    .gh-trust-title { font-size: 18px !important; }
    .gh-trust-stat { min-width: 100px !important; padding: 10px 12px !important; }
    .gh-trust-counter { font-size: 20px !important; }
}

/* ============================================
   RESPONSIVE - DÉSACTIVER HOVER SUR MOBILE
   ============================================ */

@media (max-width: 900px) {
    .gh-hero-wrapper--grid article.post:hover,
    .gh-hero-wrapper--featured-type-9-2 article.post:hover,
    .gh-container--section article.post:hover,
    .gh-post-page__more-posts article.post:hover,
    .gh-archive-page-posts-feed article.post:hover,
    .gh-archive-page-post:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .gh-hero-wrapper--grid article.post:hover .gh-card-image,
    .gh-hero-wrapper--featured-type-9-2 article.post:hover .gh-card-image,
    .gh-container--section article.post:hover .gh-card-image,
    .gh-post-page__more-posts article.post:hover .gh-card-image,
    .gh-archive-page-posts-feed article.post:hover .gh-card-image,
    .gh-archive-page-post:hover .gh-archive-page-post-image {
        transform: none !important;
    }
    
    /* Article chevauchement réduit sur mobile */
    .gh-post-page--featured .gh-post-page__article {
        margin-top: -40px !important;
        border-radius: 16px 16px 0 0 !important;
        padding-top: 24px !important;
    }
}
