.realisation-single-content {
	display: flex;
	width: 100%;
	gap: 2rem;
	align-items: flex-start;
}

.realisation-single-col-left {
	position: sticky;
	top: var(--header-height, 0px);
	width: 50%;
	height: calc(100vh - var(--header-height, 0px));
}

.realisation-single-col-right {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 50%;
    padding: 5rem var(--gutters) 3rem 0;
}

.realisation-single-gallery {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.realisation-single-gallery-item {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.realisation-single-gallery-item.active {
	opacity: 1;
	pointer-events: auto;
}

.realisation-single-gallery-item img,
.realisation-single-gallery-item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.realisation-single-nav {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 2;
}
.realisation-single-nav-dot{
    width: 12px;
    height: 12px;
    background-color: var(--wp--preset--color--beige);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.realisation-single-nav-dot.active {
    background-color: var(--wp--preset--color--bleu-inpool);
}
.realisation-single-infos{
    display: flex;
    flex-direction: column;
    color: var(--wp--preset--color--bleu-fonce);
    gap: 1rem;
}
.realisation-single-infos h2{
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 1rem;
}
.realisation-single-info-label{
    color: var(--wp--preset--color--bleu-fonce);
    font-family: Inter;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}
.realisation-single-info-item{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.realisation-single-info-value{
    font-size: 14px;
    font-weight: 400;
}
.realisation-single-info-value p{
    margin: 0;
}
.realisation-single-faq-wrapper{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 2rem;
}
.realisation-single-faq{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.faq-question:hover{
    cursor: pointer;
}
.faq-question-icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 0.5rem;
    background-image: url(../../../assets/svg/plus-blue.svg);
    background-size: cover;
    transition: transform ease-in .3s;
}
.faq-question.active .faq-question-icon{
    background-image: url(../../../assets/svg/iconoir_moins.svg);
}
.faq-answer{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows ease .3s;
}
.faq-answer-content{
    overflow: hidden;
    transition: max-height ease .3s;
    max-height: 0;
}
.faq-question.active .faq-answer-content{
    max-height: 1000px;
}
.faq-question.active .faq-answer{
    grid-template-rows: 1fr;
}
.faq-question-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question {
    background-color: var(--wp--preset--color--bleu-fonce);
    padding: 1rem;
    border-radius: 10px;
}
.realisation-single-separator{
   display: flex;
   width: 100%;
   justify-content: center;
   padding: 1rem 0;
}
.realisation-single-separator span{
    background-image: url(../../../assets/svg/shape-inpool.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 35.5px;
    height: 6px;
}
.realisation-single-cards{
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.nos-rea-item{
    display: flex;
    flex-direction: column;
    width: 49%;
    position: relative;
    gap: 0.5rem;
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}
.nos-rea-item img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
}
.nos-rea-item-text{
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    padding: 1rem;
    gap: 0.5rem;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.nos-rea-item-modele{
    color: var(--wp--preset--color--beige);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.nos-rea-item-title{
    color: var(--wp--preset--color--beige);
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
}
.nos-rea-item-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 60px;
    height: 60px;
    transition: opacity 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nos-rea-item-icon span{
    width: 40px;
    height: 40px;
    background-image: url(../../../assets/svg/inpool-arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.nos-rea-item:hover .nos-rea-item-icon{
    opacity: 1;
    z-index: 1;
}
.nos-rea-item:hover .nos-rea-item-text{
    opacity: 0;
}
.nos-rea-item-text p{
    margin-bottom: 0;
}
.nos-rea-item:hover img{
    transform: translate(-50%, -50%) scale(1.05);
}
.mobile-only{
    display: none;
}
.realisation-single-nav-btn{
    display: flex;
    height: 30px;
    width: 30px;
    border-radius: 40px;
    align-items: center;
    justify-content: center;
    background-color: var(--wp--preset--color--beige);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.realisation-single-nav-btn::after{
    content: '';
    width: 10px;
    height: 10px;
    background-image: url(../../../assets/svg/right-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}
.realisation-single-nav-btn.prev{
    left: 1rem;
}
.realisation-single-nav-btn.next{
    right: 1rem;
}
.realisation-single-nav-btn.prev::after{
    transform: rotate(180deg);
}
@media (max-width: 576px) {
    .realisation-single-faq{
        gap: 1rem;
    }
    .realisation-single-gallery{
        display: none;
        height: 300px;
    }
    .realisation-single-gallery.mobile-only{
        display: flex;
    }
    .realisation-single-content{
        flex-direction: column-reverse
    }
    .realisation-single-col-right{
        width: 100%;
        padding: 2rem var(--gutters) 3rem;
    }
    .realisation-single-col-left{
        display: none;
    }
    .realisation-single-faq-wrapper{
        justify-content: center;
    }
    .single-faq-text{
        text-align: center;
    }
    .realisation-single-others-text{
        text-align: center;
    }
    .nos-rea-item{
        height: 250px;
    }
    .realisation-single-info-item{
        flex-direction: column;
    }
    .realisation-single-info-value p{
        text-align: start!important;
    }
    .realisation-single-info-label{
        padding-bottom: 0.5rem;
    }
}