.highlighted {
    position: relative
}

.highlighted::after {
    content: '';
    transform-origin: 0 0;
    transform: scaleX(0);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: .4em;
    background: #78ab4e;
    z-index: -1;
    opacity: 0.8;
    transition: transform .3s;
}

.highlighted:hover::after {
    transform: scaleX(1);
}

:root {
    --primary: #111;
    --bg: #fff;
    --accent: #0077ff;
}


dialog {
    border: 1px solid #0a102f;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

input:invalid {
    border-color: red;
}

.close-btn {
    background: none;
    color: var(--primary);
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
}

.error {
    color: red;
    font-size: 0.875rem;
}

.btn-send {
    background-color: #fff;
    color: #0a102f;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    border-radius: 4px;
}

.input-fom {
    border-radius: 4px !important;
}

#open_preferences_center {
    position: fixed;
    bottom: 8px;
    left: 8px;
    background-color: #0A102F;
    color: white;
    padding: 8px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 9999;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: background-color 0.2s ease;
}

.cc-cp-foot-save, .termsfeed-com---pc-dialog input[type=checkbox].cc-custom-checkbox:checked + label:before, .cc-nb-okagree {
    background-color: #0A102F !important;
}

.termsfeed-com---palette-light .cc-nb-reject {
    background-color: #eaeaea !important;
    color: #111 !important;
}

.termsfeed-com---palette-light.termsfeed-com---nb {
    border-radius: 1rem !important;
    right: 8px;
    bottom: 8px
}


.input-search {
    max-width : 300px;

}

.post-link:hover {
    color: #0A102F !important;
}

.main-wrapper {
    min-height : 85vh;
}

.post-img-presentation {

}

.post-img-presentation-a {

}

.blog-image {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}


/* Petits mobiles (moins de 576px) */
@media (max-width: 575.98px) {
    /* Styles pour les petits mobiles */
    .post-img-presentation-a {
        display: none;
    }
}

/* Mobiles (paysage) et tablettes (portrait) (576px et plus) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Styles pour les mobiles larges et petites tablettes */
    .post-img-presentation-a {
        display: none;
    }
}

/* Tablettes (paysage) et petits ordinateurs (768px et plus) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Styles pour les grandes tablettes et petits ordinateurs */
}

/* Ordinateurs portables et de bureau (992px et plus) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Styles pour les ordinateurs portables et de bureau de taille moyenne */
}

/* Grands écrans d'ordinateur et téléviseurs (1200px et plus) */
@media (min-width: 1200px) {
    /* Styles pour les très grands écrans */
}