.lactu-slider {
    width: 100%;
    overflow: hidden;
    padding-bottom: 35px;
}

.lactu-slide {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lactu-image {
    width: 42%;
    flex-shrink: 0;
}

.lactu-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.lactu-content {
    width: 58%;
    padding-right: 45px;
}

.lactu-title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
    /* font-weight: 700; */
}

.lactu-title a {
    color: #2d2d2d;
    text-decoration: none;
    transition: color .2s ease;
}

.lactu-title a:hover {
    color: #2ea3c4;
}

.lactu-date {
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 5px;

    font-size: 14px;
    color: #5a6f82;

    border-bottom: 2px solid #ef4b3f;
}

.lactu-excerpt {
    font-size: 17px;
    line-height: 1.7;
    /* color: #385168; */
}

/* Flèches */
.lactu-slider .swiper-button-prev,
.lactu-slider .swiper-button-next {

    width: 42px;
    height: 42px;

    background: rgba(0,0,0,.65);

    color: #fff;

    transition: background .2s ease;
}

.lactu-slider .swiper-button-prev:hover,
.lactu-slider .swiper-button-next:hover {
    background: rgba(0,0,0,.85);
}

.lactu-slider .swiper-button-prev {
    left: 0;
}

.lactu-slider .swiper-button-next {
    right: 0;
}

.lactu-slider .swiper-button-prev::after,
.lactu-slider .swiper-button-next::after {

    font-size: 18px;
    font-weight: bold;
}

/* Pagination */
.lactu-slider .swiper-pagination {
    bottom: 0 !important;
}

.lactu-slider .swiper-pagination-bullet {

    width: 10px;
    height: 10px;

    background: #fff;

    border: 2px solid #555;

    opacity: 1;
}

.lactu-slider .swiper-pagination-bullet-active {
    background: #666;
}

/* Responsive */
@media(max-width: 768px) {

    .lactu-slide {
        flex-direction: column;
        align-items: flex-start;
    }

    .lactu-image,
    .lactu-content {
        width: 100%;
    }

    .lactu-content {
        padding-right: 0;
    }

    .lactu-image img {
        height: auto;
    }

    .lactu-title {
        font-size: 20px;
    }
}