p{margin-bottom:10px !important;}

.title{
    font-size:1.2em; 
    font-weight:500;
    line-height: 1.45em;
    padding-bottom:5px;
}

#salleai{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    width:100%;
    min-height:200px;
    gap:20px;
}
@media (max-width:990px){
    #salleai{
        grid-template-columns: 1fr;
        padding:0 18px;
    }
}

#salleai-loader{
    position: absolute;
    width:100%;
    height:180px;
}

#salleai-popup{
    padding-bottom:22px;
    background-color: #fff;
}

.salleai-item{
    position:relative; 
    padding:0;
    color:#333;
    overflow: hidden;
    border-radius: var(--border1);
    border: 1px solid #ddd;
    display: grid;
    background-color:#fff;
    padding-bottom:21px;
    cursor: pointer;
    transition-duration: 0.5s;
}

@media (min-width:990px){
    .salleai-item{
        grid-template-rows: 220px 1fr;
    }
}

.salleai__img{
    width:100%; 
    background-color: #f7f7f7;
    background: linear-gradient(to left, #fff 0%, #e3e3e3 100%);
    display:flex;
    min-height: 210px;
}

.salleai__img img{
    width: 100%;
    /*object-fit: contain; */
}

.salleai-item:hover{
    border: 1px solid #bbb;
    transition-duration: 0.2s;
    box-shadow: 4px 3px 4px rgba(0, 0, 0, 0.1);
}

.salleai-item:hover .salleai__img img{
    transform: scale(1.02) translateY(-2px);
    transition-duration: 0.6s;
    filter: brightness(94%);
}

.salleai-item .salleai__img img{
    transition-duration: 0.3s;
}

.salleai-item:hover .title{
    color:var(--color2);
    transition-duration: 0.5s;
}

.salleai__content{
    padding:22px;
    padding-bottom:0px;
    background-color: transparent;
}

.salleai__taxonomies{
    display:inline-block;
    padding:3px 6px; 
    border-radius:4px; 
    font-weight: 400;
    margin:0 3px 7px 0;
    border:1px solid #ddd;
}

.salleai__excerpt{
    margin-top:10px; font-size:14px;
}

.salleai__button{
    background-color: var(--color2);
    padding:10px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    margin:0 22px;
    font-weight: 400;
}

.salleai-item:hover .salleai__button{
    background-color: var(--color1);
    transition-duration: 0.3s;
}

#nextPageLoad{
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding:8px 16px;
    color:#666;
    font-weight: 500;
    margin-bottom:20px;
}