
    *{
        --small-space: 20px;
        --bigger-space: 50px;
        --font: "Poppins" , sans-serif;
    }
    @media (max-width: 500px){
        *{
            --small-space: 10px;
        }
    }

    .fatured-listing-container{

        font-family: var(--font);
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        position: relative;
        .featured-listing-filters{
            display: flex;
            margin-bottom: 25px;
            width: 100%;
            flex-wrap: wrap;
            border-bottom: 1px solid #AEB5B7;
            .filter-button{
                text-decoration: none;
                color: black;
                margin-right: 15px;
                font-size: 1.2rem;
                font-family: var(--font);
                background: none;
                border: none;
                padding-bottom: 5px;
            }
            .filter-button:hover{
                cursor: pointer;
            }
            .active{
                font-weight: 600;
                border-bottom: 2px solid black;
            }
        }
    }
    .fatured-listing {
        width: 100%;
        max-width: 1280px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 45px;
        .page-title{
          margin-top: 20px;
            h1{
                font-size: 3rem;
                margin-bottom: 42
                font-weight: 700;
            }

        }

    }
    .breadcrumb{
        margin-top: 30px;
        font-family: "Poppins" , sans-serif;
        font-size: 1rem;
        margin-bottom: 30px;
        
        a, span{
            text-decoration: none;
            color: #5C6A6F;
          font-weight: 400;
        }
      #currentpage{
        font-weight: 600;
      }
        #currentpage, #hs_cos_wrapper_name{
            color: #0A2126;

        }
    }
    @media (max-width: 1280px){
        .fatured-listing-container{
            margin-left: 45px;
            width: 94%;
        }
        .fatured-listing{
            justify-content: space-evenly;
        }
    }
    @media (max-width: 950px) {
        .fatured-listing-container{
            margin: 5px 15px;
        }
    }

    .fatured-listing__body {
        gap: 15px;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 35px;
    }

    .fatured-listing__row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .fatured-listing__entry-link {
        text-decoration: none;
        color: inherit;
        flex: 1;
        margin: 0 10px;

    }

    .fatured-listing__entry {
        background: white;
        min-width: 300px;
        width: 100%;
        max-width: 32%;
        border: 1px solid #EFEAE2;
        overflow: hidden;
        text-decoration: none;
        color: #0A2126;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
        margin-bottom: 32px;
        a{
            text-decoration: none;
            color: inherit;
        }
      h2{
        font-size: 1.17em;
      }
        .image_container{
            width: 100%;
            max-height: 220px;
            overflow: hidden;
            img {
                object-fit: cover;
                width: 100%;
                height: auto;
            }
        }
    }

    .fatured-listing__entry:hover {
        transform: scale(1.02);
    }

    .fatured-listing__entry h4 {
        font-size: 20px;
        margin: 10px;
    }

    .fatured-listing__entry-summary , .fatured-listing__reading-time {
        font-size: 1rem;
        color: #4D5D61;
        margin: 10px;

    }
    .fatured-listing__reading-time{
        display: flex;
        height: 21px;
        align-items: center;
        svg{
            margin-right: 10px;
        }
    }
    .annonce-banner{
        .annonce-banner-content{
            min-height: 500px;
            max-width: 100%;
            max-height: 100%;
            height: 100%;
            width: 100%;
            z-index: 15;
            display: flex;
            gap: 5%;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            .annonce-banner-content-icon{
                width: 30px;
                height: 30px;
            }
            .annonce-banner-content-title{
                font-size: 2rem;
                line-height: 2rem;
                width: 80%;
                font-weight: 700;
                text-align: center;
            }
            .annonce-banner-content-description{
                color: #7c98b6;
                font-size: 1.2rem;
                width: 80%;
                text-align: center;
            }
            .annonce-banner-content-button {
                max-width: 40%;
                max-height: 20%;
                display: flex;
                text-decoration: none;
                color: white;
                background: #0A2126;
                border-radius: 25px;
                padding: 10px 32px;
                align-items: center;
                justify-content: center;
                gap: 5px;
                .annonce-banner-content-button-icon{
                    width: 0;

                    overflow: hidden;
                    transition: width 0.3s ease;
                    margin-left: 5px;
                }
            }
            .annonce-banner-content-button:hover .annonce-banner-content-button-icon{
                width: 20px;
            }
        }
        @media(max-width: 720px){
            .annonce-banner-content{
                .annonce-banner-content-button{
                    max-width: 80%;
                    width: 60%;
                }
            }

        }
        position: relative;
        background: #EFEAE2;
        .left-top-icon{
            position: absolute;
            top: 0;
            left: 0;
        }
        .right-top-ticon{
            position: absolute;
            top: 0;
            right: 0;
        }
        .right-bottom-ticon{
            position: absolute;
            bottom: 0;
            right: 0;
        }
        .left-bottom-ticon{
            position: absolute;
            bottom: 0;
            left: 0;
        }
    }
    .anoncment-form{
        background: #0A2126;
        min-height: 500px;
        max-width: 100%;
        max-height: 100%;
        position: relative;
        height: 100%;
        width: 100%;
        z-index: 15;
        display: flex;
        gap: 5%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        .left-bottom-icon{
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 1;
            z-index: 12;
        }
        .frm-container{
            width: 100%;
            height: 100%;
            padding: 20px;
            z-index: 15;
            display: flex;
            align-items: center;
            justify-content: center;
            .hs-error-msg{
                color: #CF6679;
                font-style: 0.8rem;
            }
            .hs-richtext,.hs_email, .input,.actions {
                display: flex;
                margin-bottom: 15px;
                align-items: center;
                justify-content: center;
            }
            .hs-richtext p{
                color: #7c98b6;
                z-index: 12;
                font-size: 1.2rem;
                width: 80%;
                text-align: center;
            }
            .hs-richtext h1{
                font-size: 2rem;
                line-height: 2rem;
                width: 80%;
                color: white;
                z-index: 12;
                font-weight: 700;
                text-align: center;
            }
            .hs_cos_wrapper_type_form{
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 0 30px;
                margin: auto;
                li {
                    list-style-type: none;
                }
            }
            input:not([type="checkbox"]),
            select {
                border: none;
                width: 80%;
                padding: 12px 14px 12px 16px;
                border-radius: 4px;
                margin-bottom: var(--small-space);
            }

            .hs-button{
                margin: var(--small-space) 0;
                background: #EFEAE2;
                border:none;
                border-radius: 100px !important;
                padding: 10px 32px;
                font-family: "Poppins" , sans-serif;
                font-weight: 500;
                font-size: 1.2rem;
            }
            .hs-button:hover{
                cursor: pointer;
            }
            p,span,a{
                color: #AEB5B7;
            }
        }

    }

    .fatured-listing__entry-row {
        padding: 10px;
        font-size: 14px;
        color: #666;

    }

    .fatured-listing__read-more {
        padding: 10px;
        font-size: 14px;
        color: #007BFF;
        text-align: right;
    }

    .fatured-listing__footer {
        margin-top: 20px;
        width: 100%;
        display: flex;
        margin-bottom:var(--bigger-space);
        justify-content: center;
        button{
            color: #0A2126 ;
            border: 1px solid #0A2126;
            border-radius: 100px;
            font-size: 1rem;
            padding: 5px 32px;
            background: white;
        }
        button:hover{
            cursor: pointer;
        }
    }
    .fatured-listing__entry-tags{
        margin-top: var(--small-space);
        display: flex;
        color: #5C6A6F;
        justify-content: flex-start;
        gap: 10px;
        margin-left: 10px;
        flex-wrap: wrap;
    }
    .fatured-listing__tag{
        display: flex;
        box-sizing: border-box;
        padding: 1px 8px;
        align-items: center;
        font-size: 0.8rem;
        border-radius: 4px;
        border: 1px solid #5C6A6F;
    }
    .large{
        max-width: inherit;
        width: 49% ;
    }
    @media(max-width: 1100px ){
        .fatured-listing__entry{
            max-width: inherit;
            width: 48% ;
        }
    }

    @media(max-width: 625px ){
        .fatured-listing__entry{
            max-width: inherit;
            width: 100%;
        }
    }


    .blog-pagination{
        margin: 30px auto;
        width:  50%;
        display: flex;
        gap: 15px;
        justify-content: center;
        .previous-posts-link{
            padding: 10px 32px;
            text-decoration: none;
            border: 1px solid  #0A2126;
            border-radius: 100px;
            color: #0A2126 ;
            font-family: "Poppins" , sans-serif;
            font-size: 1.2rem;
        }

    }
.hidden_custom {
    opacity: 0;
    transition: opacity 0.5s ease; /* Transition pour un effet fluide */
}
