.actu-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding-top: 90px;
    gap: var(--wp--custom--gap);
    padding-bottom: var(--wp--custom--gap);
}

.actu-hero {
    min-height: calc(100svh - 90px);
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--wp--custom--block-gap);
}

.actu-left-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    justify-content: center;
    padding-left: var(--wp--custom--px);
}

.hero-line {
    width: 110px;
    height: 1px;
    background-color: var(--wp--preset--color--red);
}

.actu-title-block {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;

}

.actu-hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.actu-hero-author {
    color: var(--wp--preset--color--red) !important;
}

.actu-hero-line {
    width: 110px;
    height: 1px;
    background-color: var(--wp--preset--color--red);
}

.actu-right-block {
    width: 100%;
}

.actu-right-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actu-body-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: var(--wp--custom--px);
    padding-right: var(--wp--custom--px);
    gap: 20px;
}

.actu-btn {
    width: fit-content;
    display: flex;
}

/* BANNIERE ACTU */
.actu-banner-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.actu-banner {
    width: 100%;
    display: flex;
    flex-direction: row;
    border-radius: 4px;
    overflow: hidden;
    height: 250px;
    gap: 0px;
    background-color: var(--wp--preset--color--light);
}



.actu-img {
    max-width: 425px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actu-content {
    padding: 40px;
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.actu-content>p:nth-child(2) {
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.actu-content>p:not(:nth-child(2)) {
    display: none;
}



.actu-content>h2,
.actu-short-content>h2 {
    font-weight: 600 !important;
}

/* BANNIERE ACTU SHORT */

.actu-short-banner-container.actu-short-mosaic {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.actu-short-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    background-color: var(--wp--preset--color--light);
    gap: 20px;
    justify-content: center;
}

.actu-short-content>p:nth-child(2) {
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.actu-short-content>p:not(:nth-child(2)) {
    display: none;
}

.actu-short-left,
.actu-short-right {
    flex: 1 1 0;
    min-width: 0;
}

.actu-short-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.actu-short-count-3 .actu-short-right-item {
    display: flex;
    flex: 1 1 0;
    min-height: 0;
}

.actu-short-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.actu-short-img {
    width: 100%;
    height: auto;
    display: block;
}

.actu-short-left .actu-short-img {
    height: 100%;
    max-height: 400px;
    object-fit: cover;
}

.actu-short-right-item .actu-short-card {
    flex-direction: row !important;
}

.actu-short-right-item .actu-short-card .actu-short-img {
    min-width: 40%;
	max-width: 40%;
    height: 100%;
    object-fit: cover;
}


.actu-short-btn {
    width: fit-content;
}

.actu-short-count-1 .actu-short-single {
    width: 100%;
}

@media not all and (min-width: 1281px) {
    .actu-short-mosaic {
        flex-direction: column;

    }

    .actu-short-right-item {
        flex: none !important;
    }
}


@media not all and (min-width: 1025px) {
    .actu-hero {
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
        min-height: auto;
    }

    .actu-left-block {
        align-items: start;
        text-align: start;
        gap: 20px;
        padding-right: var(--wp--custom--px);
    }


    .actu-right-block {
        width: 100%;
    }

    .actu-banner {
        flex-direction: column;
        height: auto;
    }

    .actu-img {
        max-width: 100%;
        height: 200px;
    }

    .actu-content {
        padding: 20px;
    }
}

@media not all and (min-width: 641px) {
    .actu-short-right-item .actu-short-card {
        flex-direction: column !important;
    }

    .actu-short-right-item .actu-short-card .actu-short-img {
        width: 100%;
		max-width: unset;
		min-width: unset;
        height: auto;
        max-height: 200px;
        object-fit: cover;
    }
}