

#listLastEvents {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}
.card-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3em;
}
/* .lastEvents {
    width: calc((100% - 30px) / 3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
} */
#listLastEvents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 40px;
    box-sizing: border-box;
    
}


.lastEvents .card-img {
    /*height: 200px;*/
    flex-grow: 2;
    width: 100%;
}

#listLastEvents .lastEvents .card-img img.card-img-top {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    aspect-ratio: 400/250;
}
.lastEvents {
    border:4px solid #258da6!important;
}
.lastEvents .card-body {
    padding: 15px;
    /*flex-grow: 2;*/
    display: flex;
    flex-direction: column;
}
a.moreEvent {
    color: #fa7317;
    text-transform: uppercase;
}

/* .lastEvents .card-body .card-text {
    flex-grow: 2;
} */
@media only screen and (max-width:1380px){
    #listLastEvents {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media only screen and (max-width:890px){
    #listLastEvents {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
}
