.about {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 28px 30px 0 30px;
}

.about-inner {
    width: min(1000px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 28px;
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.about-kicker {
    font-family: 'Space Mono', sans-serif;
    font-size: 10pt;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 0;
    min-width: 0;
}

.about-inner h2 {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 18pt;
    font-variation-settings: 'wght' 500, 'wdth' 180, 'slnt' 0;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.28;
}

.about-inner p,
.about-points li {
    font-family: 'Space Mono', sans-serif;
    font-size: 10.5pt;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-inner p {
    margin-bottom: 14px;
}

.about-points {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 14px;
}

.about-contact {
    color: rgba(255, 255, 255, 0.72);
}

.about-photo {
    flex: 0 1 40%;
    max-width: 360px;
    min-width: 180px;
    display: flex;
    align-items: center;
}

.about-image {
    display: block;

    width: 100%;
    height: auto;

}

@media screen and (max-width: 1030px) {

    .about-text{
        gap: auto;
        justify-content: space-between;
    }

    .about-inner h2 {
        font-family: 'Zalando Sans Expanded', sans-serif;
        font-size: 16pt;
        font-variation-settings: 'wght' 500, 'wdth' 180, 'slnt' 0;
        color: #ffffff;
        margin-bottom: 18px;
        line-height: 1.28;
    }

    .about-inner p,
    .about-points li {
        font-family: 'Space Mono', sans-serif;
        font-size: 10pt;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }

    .about-inner p {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 960px) {

    .about-text{
        
        justify-content: space-between;
    }

    .about-inner h2 {
        font-family: 'Zalando Sans Expanded', sans-serif;
        font-size: 16pt;
        font-variation-settings: 'wght' 500, 'wdth' 180, 'slnt' 0;
        color: #ffffff;
        margin-bottom: 18px;
        line-height: 1.28;
    }

    .about-inner p,
    .about-points li {
        font-family: 'Space Mono', sans-serif;
        font-size: 10pt;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.2;
    }

    .about-inner p {
        margin-bottom: 10px;
    }
}






@media screen and (max-width: 793px) {
    .about {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 16px 20px 0 20px;
    }

    .about-inner {
        height: fit-content;
        width: 100%;
        padding: 20px;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .about-photo {
        width: 100%;
        max-width: 360px;
        min-width: 0;
    }

    .about-inner h2 {
        font-size: 14pt;
    }
}

@media screen and (max-width: 568px) {
    .about {
        padding: 12px 20px 0 20px;
    }

    .about-inner {
        padding: 16px;
        gap: 18px;
    }

    .about-inner p,
    .about-points li {
        font-size: 10pt;
    }
}