.flr-project-slider {
    display: flex;
    gap: 20px;
}

.flr-project-card {
    overflow: hidden;
    max-width: 400px;
    width: 400px;
    min-width: 400px;
    display: flex;
    flex-direction: column;
}
.flr-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 1 ligne max */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    position: relative;
}
.flr-project-slider {
    display: flex;
    justify-content: center;
    gap: 20px; /* espace entre les cards */
}

.flr-project-slider .slick-slide:last-child {
    margin-right: 0;
}
.flr-card-image img {
    width: 100%;
    min-height: 275px;
    display: block;

    border-radius: 10px;
}

.flr-card-body {
    padding: 15px;
}

.flr-card-title {
    margin: 0 0 10px;
    font-size: 1.8rem;
}


.flr-card-meta {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.flr-card-excerpt {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.flr-project-card *{
    color: #0A246A;
}
.flr-card-btn {
    display: inline-block;
    text-decoration: none;

    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s;
}

.flr-card-btn:hover,.flr-card-meta a{
    color: #0D367A;
}

.column{
    flex-wrap: wrap;
    justify-content: center;
}



@media screen and (max-width: 500px) {
    .flr-project-card{
        margin: 0;
        min-width: 100%;
    }

}
