/*** BLOC ACTUS ***/
.actus{
    display: flex;
    flex-direction: column;
    margin: 5em 5%;
    gap: 2em;
    align-items: center;
    position: relative;
	text-align: center;
}

.actus .tv__text{
	position: relative;
	bottom: 1rem;
	color: black;
}

@media(min-width: 950px){
    .actus {
        position: relative;
        flex-direction: row;
        margin: 12em auto;
		margin-bottom: 20em;
        gap: 2em;
        align-items: center;
        width: 90%;
		text-align: left;
    }
    .actus__container{
        width: 100%;
        min-height: 300px;
		position: relative;
    }
    .actus::before{
        position: absolute;
        top: -3em;
        left: 30%;
        content:url(/wp-content/uploads/2023/02/megaphone.svg);
        width:10em;
    }
    .actus__bandeau-noir{
        position: absolute;
        bottom: -6em;
        width: 100%;
        height: 10em;
        background-color: black;
        z-index: -1;
        display: flex;
        align-items: center;
        padding: 2em;
		margin-top: 5rem;
    }
	.actus__container .tv{
		position: absolute;
		text-align: center;
	}
	.actus__container > :first-child .tv__text, .actus__container > :nth-child(2) .tv__text{
		color: white;
	}
    /* La Rochelle */
	.actus__container > :first-child{ 
		bottom: -15%;
		right: 63%;
	}
    /* Saintes */
	.actus__container > :nth-child(2){
		bottom: -35%;
		left: 45%;
	}
    /* Rochefort */
    .actus__container > :nth-child(3){
		bottom: 60%;
		right: 40%;
	}
    /* Camping le soleil */
	.actus__container > :last-child{
		bottom: 40%;
		left: 65%;
	}
	.actus__text{
		color:white;
	}
}

