#about.about-4 .about-container{
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

#about.about-4 .about-copy{
    width: 100%;
    height: 100%;
}

#about.about-4 .about-copy-pos {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    height: 100%; 
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

#about.about-4 .about-container {
    align-items: center; /* Vertikale Ausrichtung für Container */
}

@media only screen and (max-width: 765px) {
    #about.about-4 .about-copy-pos {
        height: auto; /* Höhe in mobiler Ansicht dynamisch anpassen */
    }
}

#about.about-4 .about-img-container{
    width: 100%;
    position: relative;
}

#about.about-4 .about-topline{
    text-align: center;
    color: var(--text-body);
    font-family: var(--secondary-font);
    font-size: var(--text-display);
    font-style: normal;
    font-weight: 600;
    line-height: 150%; 
    padding-bottom: var(--space-xs);
}

#about.about-4 .about-hero-headline{
    text-align: center;
    color: var(--text-title);
    font-family: var(--primary-font);
    font-size: var(--h1);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding-bottom: var(--space-s);
}

#about.about-4 .about-copy-text{
    text-align: center;
    color: var(--text-body);
    font-family: var(--secondary-font);
    font-size: var(--text);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

/* Bilder */
#about.about-4 .about-main-img-container{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}

#about.about-4 .about-main-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

#about.about-4 .about-right-img-container{
    width: 109%;
    height: auto;
}

#about.about-4 .about-right-img{
    position: absolute;
    right: 0;
    top: 10%;
    bottom: -10%;
    z-index: 10;
    width: 20%;
    height: 100%;
}

#about.about-4 .about-left-img-container{
    width: 30%;
    height: auto;
}   

#about.about-4 .about-left-img{
    position: absolute;
    left: 0;
    bottom: 10%;
    z-index: 10;
    width: 20%;
    height: auto;
}

#about.about-4 .about-3-cols{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl, 48px);
    align-self: stretch;
}

#about.about-4 .about-col {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 0 0;
}


#about.about-4 .about-col-copy{
    color: var(--text-body);
    font-family: var(--secondary-font);
    font-size: var(--text);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

#about.about-4 .about-col-headline{
    color: var(--text-body);
    font-family: var(--primary-font);
    font-size: var(--h3);
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 43.2px */
    text-transform: uppercase;
}

#about.about-4 .about-col-copy{
    color: var(--text-body);

    /* Text/Text */
    font-family: var(--secondary-font);
    font-size: var(--text);
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
}

@media only screen and (max-width: 765px) {
    #about.about-4 .about-3-cols{
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: var(--space-xl, 48px);
        align-self: stretch;
    }

    #about.about-4 .about-container{
        display: flex;
        flex-direction: column;
    }

    #about.about-4 .about-copy{
        width: 100%;
    }
    
    #about.about-4 .about-img-container{
        width: 100%;
    }
    
}