.realisations-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.realisations-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.realisations-wrap h2 {
    color: var(--grey-1);
    font-family: RobotoSemiBold;
    font-size: 2.6rem;
}
.realisation-cell {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.realisation-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.realisation-cell .realisation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-1);
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.6em;
    padding: 1rem;
    cursor: pointer;
    font-family: RobotoSemiBold;
}
.realisation-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
}
.dropdown-img {
    width: 100%;
}
.realisation-dropdown img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    max-height: 500px;
}
.realisation-cell.active + .realisation-dropdown {
    max-height: 100%;
}



