.collab-info-modelling {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
    padding: 3rem;
    overflow: hidden;
    color: white;
    padding-top: 10rem;
}


.collab-info-modelling::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("../img/memories-of-colors-render.png") center/cover no-repeat;

    filter: blur(15px) brightness(0.6);
    transform: scale(1.1);

    z-index: -2;
}

.collab-info-modelling::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0) 40%),
        linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0) 30%, rgba(0,0,0,0.7));

    z-index: -1;
}


.collab-image-modelling img {
    width: 50vw;
    height: auto;
    object-fit: cover;
    display: flex;
    align-items: start;
}


.collab-content-modelling {
    position: relative;
    flex: 1;

    display: flex;
    flex-direction: column;
}


.collab-logo-modelling {
    position: relative;

    width: 15rem;
    height: auto;
    display: flex;
    align-items: start;
}


.collab-content-modelling p {
    margin-bottom: 2rem;
}


.square-button-modelling {
    width: 180px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: transparent;
    color: white;

    border: 2px solid white;
    text-transform: uppercase;
    font-family: "Montserrat-Bold", Arial, sans-serif;

    cursor: pointer;
    transition: 0.3s ease;
}

.square-button-modelling:hover {
    background-color: white;
    color: black;
}

.modelling-block{
    padding-top: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}



.collab-info-lighting {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
    padding: 3rem;
    overflow: hidden;
    color: white;
    padding-top: 10rem;
}


.collab-info-lighting::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("../img/world-lighting.png") center/cover no-repeat;

    filter: blur(15px) brightness(0.6);
    transform: scale(1.1);

    z-index: -2;
}

.collab-info-lighting::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0) 40%),
        linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0) 30%, rgba(0,0,0,0.7));

    z-index: -1;
}


.collab-image-lighting img {
    width: 50vw;
    height: auto;
    object-fit: cover;
    display: flex;
    align-items: start;
}


.collab-content-modelling {
    position: relative;
    flex: 1;

    display: flex;
    flex-direction: column;
}


.collab-logo-lighting {
    position: relative;

    width: 15rem;
    height: auto;
    display: flex;
    align-items: start;
}


.collab-content-lighting p {
    margin-bottom: 2rem;
}


.square-button-lighting {
    width: 180px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: transparent;
    color: white;

    border: 2px solid white;
    text-transform: uppercase;
    font-family: "Montserrat-Bold", Arial, sans-serif;

    cursor: pointer;
    transition: 0.3s ease;
}

.square-button-lighting:hover {
    background-color: white;
    color: black;
}

.modelling-block{
    padding-top: 10rem;

}


/* ============================================================
   MOBILE / RESPONSIVE  (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {

    .collab-info-modelling,
    .collab-info-lighting {
        flex-direction: column;
        gap: 1.5rem;
        padding: 7rem 1.5rem 2rem;
    }

    .collab-image-modelling img,
    .collab-image-lighting img { width: 100%; }

    .modelling-block { padding-top: 4rem; }
}