.top-news {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 768px) {
    .top-news {
        padding: 48px 80px;
        gap: 56px;
    }
}

.top-news--header {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .top-news--header {
        text-align: left;
    }
}

.top-news--header .uptitle+h2 {
    margin-top: 16px;
}

@media screen and (min-width: 768px) {
    .top-news--header .uptitle+h2 {
        margin-top: 24px;
    }
}

.top-news--header .uptitle+h2,
.top-news--header h2+p {
    margin-top: 16px;
}

@media screen and (min-width: 768px) {

    .top-news--header .uptitle+h2,
    .top-news--header h2+p {
        margin-top: 24px;
    }
}

.top-news--header p:not(.uptitle) {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}

@media screen and (min-width: 768px) {
    .top-news--header p:not(.uptitle) {
        font-size: 18px;
    }
}

.top-news--featured {
    position: relative;
    display: flex;
    min-height: 534px;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .top-news--featured {
        justify-content: flex-start;
    }
}

.top-news--featured .featured-content {
    position: relative;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-self: flex-end;
    z-index: 1;
    color: #FFF;
    text-align: center;
    padding: 12px 24px;
}

@media screen and (min-width: 768px) {
    .top-news--featured .featured-content {
        align-items: flex-start;
        align-self: center;
        text-align: left;
        padding: 0;
        max-width: 400px;
        margin-left: 96px;
    }
}

.top-news--featured .featured-content--upinfos {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.top-news--featured .featured-content--upinfos .category {
    font-weight: 600;
    text-transform: uppercase;
}

.top-news--featured .featured-content--upinfos .separator {
    width: 2.5rem;
    height: 1px;
    background-color: #FFF;
    align-self: center;
}

.top-news--featured .featured-content--upinfos span {
    font-family: var(--borna);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

@media screen and (min-width: 768px) {
    .top-news--featured .featured-content--upinfos span {
        font-size: 20px;
    }
}

.top-news--featured .featured-content h4 {
    font-family: var(--borna);
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    color: #FFF;
}

@media screen and (min-width: 768px) {
    .top-news--featured .featured-content h4 {
        font-size: 3rem;
    }
}

.top-news--featured .featured-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .top-news--featured .featured-content p {
        font-size: 18px;
        line-height: 160%;
        font-weight: 500;
    }
}

.top-news--featured .featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .top-news--featured .featured-image {
        border-radius: 16px;
    }
}

.top-news--featured .featured-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.top-news--featured .featured-image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.top-news--featured .featured-image .arrow-link {
    position: absolute;
    top: 24px;
    right: 24px;
    height: 67px;
    width: 67px;
    border-radius: 50%;
    background-color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.top-news--featured .featured-image .arrow-link::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    -webkit-mask: url(../images/icon-redirection.svg) no-repeat center;
    mask: url(../images/icon-redirection.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--bleu-ciel);
}

@media (hover: hover) {
    .top-news--featured:hover .featured-image img {
        transform: scale(1);
    }

    .top-news--featured:hover .arrow-link {
        opacity: 1;
    }
}

.top-news--list .card-actu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.top-news--list .card-actu .card-actu--content {
    position: relative;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-self: flex-end;
    z-index: 1;
    color: var(--bleu-nuit);
    text-align: left;
}

.top-news--list .card-actu .card-actu--content--upinfos {
    display: flex;
    justify-content: start;
    gap: 8px;
}

.top-news--list .card-actu .card-actu--content--upinfos .category {
    font-family: var(--borna);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--bleu-ciel);
}

.top-news--list .card-actu .card-actu--content--upinfos .separator {
    width: 2.5rem;
    height: 1px;
    background-color: #C6C6C6;
    align-self: center;
}

.top-news--list .card-actu .card-actu--content--upinfos span {
    font-family: var(--borna);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    color: var(--bleu-nuit);
}

.top-news--list .card-actu .card-actu--content h2 {
    font-family: var(--borna);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    color: var(--bleu-nuit);
}

@media screen and (min-width: 768px) {
    .top-news--list .card-actu .card-actu--content h2 {
        font-size: 2rem;
    }
}

.top-news--list .card-actu .card-actu--content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #525252;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

@media screen and (min-width: 768px) {
    .top-news--list .card-actu .card-actu--content p {
        font-size: 16px;
    }
}

.top-news--list .card-actu .card-actu--image {
    position: relative;
    width: 100%;
    height: 203px;
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .top-news--list .card-actu .card-actu--image {
        height: 260px;
    }
}

.top-news--list .card-actu .card-actu--image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.top-news--list .card-actu .card-actu--image .arrow-link {
    position: absolute;
    top: 24px;
    right: 24px;
    height: 67px;
    width: 67px;
    border-radius: 50%;
    background-color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.top-news--list .card-actu .card-actu--image .arrow-link::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    -webkit-mask: url(../images/icon-redirection.svg) no-repeat center;
    mask: url(../images/icon-redirection.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--bleu-ciel);
}

@media (hover: hover) {
    .top-news--list .card-actu:hover .card-actu--image img {
        transform: scale(1);
    }

    .top-news--list .card-actu:hover .arrow-link {
        opacity: 1;
    }
}

.top-news .slider-actus--nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .top-news .slider-actus--nav {
        gap: 56px;
    }
}

.top-news .slider-actus--nav .btn {
    width: 100%;
}

@media screen and (min-width: 400px) {
    .top-news .slider-actus--nav .btn {
        width: -moz-max-content;
        width: max-content;
    }
}

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