.collab-info-About {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
    padding: 3rem;
    overflow: hidden;
    color: white;
    padding-top: 10rem;
    height: 80vh;
    width: 100vw;
}

.collab-content-About p{
    width: 40%;
}


.collab-info-About::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("../img/das-team-undercover.png") center/cover no-repeat;

    filter: blur(15px) brightness(0.6);
    transform: scale(1.1);

    z-index: -2;
}

.collab-info-About::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-About img {
    width: 50vw;
    height: auto;
    object-fit: cover;
    display: flex;
    align-items: start;
}


.collab-content-About {
    position: relative;
    flex: 1;

    display: flex;
    flex-direction: column;
}


.collab-logo-About {
    position: relative;

    width: 15rem;
    height: auto;
    display: flex;
    align-items: start;
}


.collab-content-About p {
    margin-bottom: 2rem;
}


.square-button-About {
    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-About:hover {
    background-color: white;
    color: black;
}

.About-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-About {
    position: relative;
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.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;
}

.About-block{
    padding-top: 10rem;

}


/* ============================================================
   MOBILE / RESPONSIVE  (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {

    .collab-info-About {
        flex-direction: column;
        gap: 1.5rem;
        padding: 7rem 1.5rem 3rem;
        height: auto;
        width: 100%;
    }

    .collab-content-About,
    .collab-content-About p { width: 100%; }

    .About-block { padding-top: 4rem; }
}