.actus-slider {
    overflow: hidden;
}

.actus-slider h2 {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    color: var(--violet);
    text-wrap: balance;
    text-align: center;
    margin-bottom: 32px;
}

@media screen and (min-width: 992px) {
    .actus-slider h2 {
        font-size: 4.375rem;
        line-height: 70px;
    }
}

.actus-slider h2 em {
    font-family: var(--play);
    font-style: italic;
}

.actus-slider--container {
    max-width: 1200px;
    padding-inline: 16px;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 1232px) {
    .actus-slider--container {
        padding-inline: 0;
    }
}

@media screen and (min-width: 992px) {
    .actus-slider .swiper-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 16px;
    }
}

@media screen and (min-width: 992px) {
    .actus-slider .actu-card {
        flex: 1;
        max-width: 350px;
    }
}

.actus-slider .actu-card .img-wrapper {
    height: clamp(0px, 36.67vw, 180px);
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    display: block;
    position: relative;
    margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .actus-slider .actu-card .img-wrapper {
        height: 255px;
    }
}

.actus-slider .actu-card .img-wrapper span {
    position: absolute;
    background: var(--violet);
    font-size: 0.875rem;
    color: white;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    border-radius: 2px;
    padding: 8px;
    left: 20px;
    bottom: 20px;
}

@media screen and (min-width: 992px) {
    .actus-slider .actu-card .img-wrapper span {
        padding: 8px 16px;
        left: 16px;
        bottom: 12px;
    }
}

.actus-slider .actu-card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: all 0.3s ease;
}

.actus-slider .actu-card:hover img {
    scale: 1.05;
}

.actus-slider .actu-card .infos {
    color: var(--violet);
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (min-width: 992px) {
    .actus-slider .actu-card .infos {
        font-size: 17px;
    }
}

.actus-slider .actu-card h3 {
    font-family: var(--play);
    color: var(--violet);
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}

@media screen and (min-width: 992px) {
    .actus-slider .actu-card h3 {
        font-size: 1.75rem;
        line-height: 30px;
    }
}

.actus-slider .actu-card .exerpt {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .actus-slider .actu-card .exerpt {
        font-size: 17px;
        line-height: 22px;
    }
}

.actus-slider--dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.actus-slider--dots span {
    background: rgba(116, 34, 129, 0.25);
    transition: all 0.4s ease;
}

.actus-slider--dots .swiper-pagination-bullet-active {
    background: var(--violet);
}

@media screen and (min-width: 992px) {
    .actus-slider--dots {
        display: none;
    }
}

.actus-slider .more {
    margin-top: 40px;
    margin-inline: auto;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    border: 1px solid var(--violet);
    color: white;
    background: var(--violet);
    border-radius: 4px;
    padding: 12px 16px;
}

@media screen and (min-width: 992px) {
    .actus-slider .more {
        margin-top: 80px;
        font-size: 1.125rem;
        transition: background 0.3s ease, color 0.3s ease;
    }
}

@media screen and (min-width: 1024px) {
    .actus-slider .more {
        padding: 16px 28px;
    }
}

.actus-slider .more:hover {
    background: white;
    color: var(--violet);
}

/*# sourceMappingURL=style.css.map */