.share-buttons li {
    display: inline-block;
    margin: 0 0 10px 0;
}
.share-buttons li a.fb-share, .share-buttons li span.fb-share {
    border-color: #3b5998;
    color: #3b5998;
}
.share-buttons li a.fb-share:hover, .share-buttons li span.fb-share:hover {
    background: #3b5998;
    color: #fff;
}
.share-buttons li a.twitter-share, .share-buttons li span.twitter-share {
    border-color: #000000;
    color: #000000;
}
.share-buttons li a.twitter-share:hover, .share-buttons li span.twitter-share:hover {
    background: #000000;
    color: #fff;
}

hr {clear: both;}

.tldr {
    background: var(--bs-body-bg);
    padding: 15px 20px;    
    border-radius: 10px;
    font-style: italic;
    font-size: 15px;
    
    color:var(--bs-body-color)
}
.tldr p{color:var(--bs-body-color)}
.tldr p {margin-bottom: 5px;}
.tldr h3 {font-size: 22px;}
table {
    width: 100%;
    margin-bottom: 20px;    
    padding: 5px;
}
.cs-content>h3 {
    margin-top: 0.5rem;
}
h3 {font-size: 1.2rem !important;}

table td, table th {
    padding: 2px 18px;
}

table th {
    text-align: center;
}

.cs-content>h2:not(:first-child) {
    margin-top: 1rem;
}

    .h2, h2 {
        font-size: 1.3rem !important;
    }


.share-buttons li a, .share-buttons li span {
    background: #fff;    
    border: 1px solid #666;
    border-radius: 3px;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 10px 4px 10px;
    width:40px;
    text-align: center;
    transition: .3s;
    display: inline-block;
    line-height: 17px;
    color:#000
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;    
    border-left: 5px solid var(--bs-primary);   
    background: var(--bs-body-bg);
}

.single-post .entry-content a {
    color: var(--bs-primary); 
    text-decoration: underline;
}
.entry-content img {
    max-width: 100%;
    
}
.news-list-item img {max-height: 85px;}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .news-list-item img {max-height: 50px;}
}




/* --- 3. Liste de Description (dl) --- */
 dl {
    display: flex; /* Active Flexbox */
    flex-wrap: wrap; /* Permet aux éléments de passer à la ligne */
    list-style: none; /* Enlève les puces par défaut */
    padding: 0;
    margin: 0;
}

/* --- 4. Terme (dt) - La Clé/Propriété --- */
 dt {
    /* Occupe 40% de la largeur du conteneur */
    flex-basis: 40%; 
    padding: 10px 15px;
    /* Style de la Clé */
    font-weight: 600;
    color: #444;
    background-color: #ebebeb; /* Fond légèrement gris pour le terme */
    border-bottom: 1px solid #d0d0d0;
    text-align: left;
}

/* --- 5. Définition (dd) - La Valeur --- */
 dd {
    /* Occupe 60% de la largeur restante */
    flex-basis: 60%; 
    margin-left: 0; /* Enlève la marge par défaut de <dd> */
    padding: 10px 15px;
    margin-bottom: 0;
    /* Style de la Valeur */
    font-weight: 400;
    color: #111;
    background-color: #ffffff; /* Fond blanc pour la valeur */
    border-bottom: 1px solid #d0d0d0;
    text-align: right; /* Aligner les valeurs à droite pour la lisibilité */
}

/* --- 6. Amélioration de l'esthétique (séparateur) --- */

/* Appliquer un style différent sur les lignes paires pour l'effet zébré */
 dt:nth-of-type(odd), 
 dd:nth-of-type(odd) {
    background-color: #f2f2f2;
}

/* Style spécifique pour la ligne "Prix" (optionnel) */
 dt:last-of-type,
 dd:last-of-type {
    font-weight: 700; /* Mettre le prix en gras */
    color: #cc0000; /* Mettre le prix en rouge (Porsche) */
    border-bottom: none; /* Enlever la bordure du bas */
}



/* Sticky Bar CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #3a0200 0%, #9d3f3c 100%);
    padding: 14px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease-out;
    display: none; /* Cachée par défaut */
}

      .sticky-cta.show {
            display: block;
        }

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.sticky-cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.sticky-cta-text {
    color: white;
    flex: 1;
}

.sticky-cta-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
}

.sticky-cta-subtitle {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.2;
}

.sticky-cta-button {
    background: #e42620;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sticky-cta-button:hover {
    background: #bb0802;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.sticky-cta-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sticky-cta-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .sticky-cta {
        padding: 14px 16px;
    }
    
    .sticky-cta-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .sticky-cta-content {
        width: 100%;
        text-align: center;
    }
    
    .sticky-cta-title {
        font-size: 15px;
    }
    
    .sticky-cta-subtitle {
        font-size: 13px;
    }
    
    .sticky-cta-button {
        width: 100%;
        justify-content: center;        
    }
    
    .sticky-cta-close {
        position: absolute;
        top: 8px;
        right: 12px;
    }
}

/* Animation de fermeture */
.sticky-cta.closing {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Ajustement du body quand la sticky est fermée */
body.sticky-closed {
    padding-bottom: 0;
}

/* Pour forcer le conteneur à rester sur une seule ligne */
.share {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

/* Réduire l’espace pris par le paragraphe et tronquer le texte si besoin */
.share p {
  margin: 0;
  margin-right: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /*max-width: 120px; /* Ajustez selon la place disponible */
}

/* Forcer les boutons à s’aligner en ligne */
.share-buttons {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;   /* Espace entre les icônes */
  margin: 0;
  padding: 0;
  list-style: none;
}

/* RATING */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center
}

.rating>input {
    display: none
}

.rating>label {
    position: relative;
    width: 1em;
    font-size: 25px;
    font-weight: 600;
    color: #fbbc04;
    cursor: pointer
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important
}

.rating>input:checked~label:before {
    opacity: 1
}

.rating:hover>input:checked~label:before {
    opacity: 0.4
}
.lh-20 {line-height: 20px !important;}
.lh-25 {line-height: 25px !important;}

.tracking-tight {letter-spacing: -0.025em;}


.rating-point .h3 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    letter-spacing: -0.5px;
}