
.sens-filter {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sens-filter-btn {
    
    border-radius: 20px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: 0.2s;
    font-family: "Montserrat";
    padding: 10px 22px;
    font-size: 15px;
    line-height: 15px;
}

.sens-filter-btn.active,
.sens-filter-btn:hover {
    background: #F454CE;
    color: #fff;
    border-color: #F454CE;
}

.sens-portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.sens-item {
    display: flex;
    background: #fafafa;
    border-radius: 14px;
    overflow: hidden;
    min-height: 300px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.sens-item-image{
    flex-grow: 1.2;
    flex-basis: 0;
}

.sens-item-image img {
    height: 100%!important;
    object-fit: cover;
}

.sens-item-content {
    padding: 50px;
    flex: 1;
    flex-basis: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.sens-item-content > h3{
    font-weight: 400;
    font-family: "Montserrat";
    letter-spacing: -1px;
}

.sens-item-categories {
    margin: 8px 0 12px 0;
    display: flex;
    gap: 10px;
}

.sens-cat {
    background: #fafafa;
    color: #F454CE;
    padding: 6px 14px;
    border-radius: 20px;
    border-color: #F454CE;
    border: solid 1px;
    font-size: 15px;
}

.sens-item-duree {
    color: #F454CE;
    margin-bottom: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "Montserrat";
    font-weight: 300;
    gap: 15px;
    font-size: 15px;
}


.img-chrono{
    width: 20px;
    height: 20px!important;
}

.sens-item-contexte {
    font-size: 15px;
    line-height: 19px;
    font-family: "Montserrat";
    margin-bottom: 20px;
    color: #726d6d;
}

.sens-link {
    color: #000;
    font-size: 15px;
    line-height: 19px;
    font-family: "Montserrat";
}


@media (max-width : 1999px ){
    .sens-link {
        font-size: 14px;
        line-height: 18px;
    }

    .sens-filter-btn {
        padding: 6px 18px;
        font-size: 14px;
        line-height: 14px;
    }

    .sens-cat {
        padding: 4px 12px;
        font-size: 14px;
    }

    .sens-item-duree {
        font-size: 14px;
        gap: 10px;
    }

    .sens-item-contexte{
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width:768px){

    .sens-item{
        flex-direction: column;
    }

    .sens-item-content {
        padding: 25px;
        gap: 5px;
    }
    .sens-item-content > h3 {
        font-size: 19px;
        margin: 0px !important;
    }

    .sens-cat {
        padding: 4px 11px;
        font-size: 13px;
    }

    .sens-item-duree {
        font-size: 13px;
        gap: 9px;
        margin-bottom: 10px;
    }

    .sens-item-contexte {
        font-size: 13px;
        line-height: 17px;
        margin-bottom: 10px;
    }

    .sens-link {
        font-size: 13px;
        line-height: 17px;
    }
    .sens-item-image img {
        width: 100%;
        height: 200px !important;
    }

    .sens-filter-btn {
        padding: 6px 16px;
        font-size: 13px;
        line-height: 13px;
    }

}