.about-me__header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--color-section-light);
    padding: 1.5rem 15vw;
}

.about-me__header h1 {
    font-family: "WorkSans-Regular";
    font-weight: bold;
    font-size: 3rem;
    z-index: 1;
}

.divider {
    width: 100px;
    border-top: solid 3px black;
    margin: 0 1rem;
    z-index: 1;
}
/* 
.custom-shape-divider-top-1700121256 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1700121256 svg {
    position: relative;
    display: block;
    width: calc(287% + 1.3px);
    height: 200px;
}

.custom-shape-divider-top-1700121256 .shape-fill {
    fill: #F9F1F0;
} */

.about-me__container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    padding: 0 15vw 2rem 15vw;
    background: var(--color-section-light);
    position: relative;
}

.about-me__text {
    flex: 1 0 50%;
    font-size: 1.8rem;
    z-index: 1;
}

.about-me__img {
    flex: 1 0 50%;
    z-index: 1;
}

.about-me__img img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
}
.about-me__img .picture-from-settings { height: auto; }

@media only screen and (max-width: 900px) {
    .about-me__header {
        padding: 1rem 1.5rem;
    }

    .about-me__header h1 {
        font-size: 2rem;
        text-align: center;
    }

    .divider {
        width: 60px;
    }

    .about-me__container {
        flex-direction: column;
        padding: 0 1.5rem 2rem 1.5rem;
    }

    .about-me__text {
        font-size: 0.8rem;
    }

    .about-me__img img {
        max-height: 70vh;
    }
}

.what-makes-me {
    background: var(--color-bg);
    padding: 3rem 15vw;
}

/* What Makes Me Stand Out section */
.what-makes-me__text {
    font-size: 1rem;
}

.what-makes-me__text .section-heading {
    font-family: Lora, serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    margin: 2rem 0 2.5rem 0;
    color: var(--color-ink);
    text-transform: uppercase;
}

.what-makes-me__text .point {
    margin-bottom: 1.8rem;
    padding-left: 0;
}

.what-makes-me__text .point-title {
    font-family: Lora, serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    margin: 0 0 0.5rem 0;
    color: var(--color-contact-emphasis);
    text-transform: uppercase;
}

.what-makes-me__text .point p {
    font-family: "WorkSans-Regular";
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    color: var(--color-text);
}

.what-makes-me__text .point p strong {
    color: var(--color-ink);
    font-weight: 500;
}

@media only screen and (max-width: 900px) {
    .what-makes-me {
        padding: 2rem 1.5rem;
    }

    .what-makes-me__text .section-heading {
        font-size: 1.4rem;
        letter-spacing: 0.1rem;
        margin: 1.5rem 0 1.5rem 0;
    }

    .what-makes-me__text .point {
        margin-bottom: 1.3rem;
    }

    .what-makes-me__text .point-title {
        font-size: 0.85rem;
    }

    .what-makes-me__text .point p {
        font-size: 0.85rem;
    }
}