.notices {
	margin-top: var(--notices-mt-mobile, 0);
	margin-bottom: var(--notices-mb-mobile, 0);
	display: flex;
	width: 100%;
}

@media (min-width: 851px) {
	.notices {
		margin-top: var(--notices-mt-desktop, 0);
		margin-bottom: var(--notices-mb-desktop, 0);
	}
}
.notices-inner {
    display: flex;
    width: 100%;
    padding: 0 0 0 var(--gutters);
    gap: 2rem;
    position: relative;
}
.notices-text{
    display: flex;
    flex-direction: column;
    width: 33%;
}
.notices-text h2, .notices-text p{
    margin: 0;
}
.notices-text p:nth-child(2){
    margin-top: 1rem;
}
.notices-text p:nth-child(3){
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.notices-wrapper{
    display: flex;
    width: 67%;
    overflow: hidden;
    container-type: inline-size;
}
.notices-track{
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
    will-change: transform;
}
.notice-item{
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(50cqi - 1rem);
    width: calc(50cqi - 1rem);
    min-height: 230px;
    max-height: 420px;
    background-color: var(--wp--preset--color--blanc);
    padding: 2rem;
    border-radius: 10px;
    justify-content: space-between;
}
.notice-item-head{
    display: flex;
    justify-content: space-between;
}
.notice-stars{
    display: flex;
    gap: 0.25rem;
    align-items: end;
}
.notice-star{
    width: 16px;
    height: 16px;
    background-image: url(../../../assets/svg/star.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.notice-quote{
    width: 42px;
    height: 30px;
    background-image: url(../../../assets/svg/quote.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.notices-nav{
    display: flex;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    left: var(--gutters);
    gap: 1rem;
}
.notices-nav-btn{
    display: flex;
    width: 32px;
    height: 32px;
    background-color: var(--wp--preset--color--bleu-inpool);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    padding: 0;
}
.notices-nav-icon{
    display: flex;
    width: 9px;
    height: 9px;
    background-image: url(../../../assets/svg/right-arrow-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.notices-prev .notices-nav-icon{
    transform: translateY(-1.5px) rotate(180deg);
}
@media (max-width: 576px) {
    .notices-inner{
        flex-direction: column;
        padding: 0 var(--gutters);
    }
    .notices-text{
        width: 100%;
        text-align: center;
    }
    .notices-wrapper{
        width: 100%;
    }
    .notice-item{
        flex: 0 0 100cqi;
        width: 100cqi;
        max-width: 100cqi;
    }
    .notices-nav{
        left: 50%;
        transform: translate(-50%, 100%);
        padding-top: 2rem;
    }
}