.about .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 1rem;
    max-width: 90%;
    gap: 1rem;
}

.about .about-content .round-frame {
    display: inline-block;
    border: 3px solid var(--c11);
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}

.about .about-content img {
    height: clamp(12rem, 20vw, 10rem);
    width: clamp(12rem, 20vw, 10rem);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about .about-content h2 {
    font-family: var(--body-font);
    font-size: var(--text-big-p);
    line-height: 1.2;
    margin: 0.5rem 0;
    color: #333;
    text-align: center;
}

.about .about-content p {
    font-family: var(--body-font);
    font-size: var(--text-small-p);
    margin: 0;
    text-align: center;
    max-width: 100%;
}

.about .about-content p+p {
    margin-top: 0.5rem;
}

.about .story {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 2rem .5rem;
    font-family: var(--body-font);
    font-size: var(--text-small-p);
    text-align: justify;
    position: relative;
}

.about .story p+p {
    margin-top: 0.75rem;
}

.left,
.right {
    flex: 1 1 45%;
    box-sizing: border-box;
    text-align: justify;
    hyphens: auto;
    text-justify: inter-word;
}

/* Up to 599px (mobile) */
@media screen and (max-width: 599px) {
    .about .story {
        flex-direction: column;
        align-items: center;
    }

    .about .story::after {
        display: none;
    }

    .left,
    .right {
        width: 100%;
        padding: 0;
    }
}

/* 600px to 991px (tablet) */
@media screen and (min-width: 600px) and (max-width: 991px) {
    .about .story {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .about .story::after {
        display: none;
    }

    .left,
    .right {
        width: 100%;
        padding: 10px 0;
    }
}

/* 992px and up (desktop) */
@media screen and (min-width: 992px) {
    .about .about-content {
        flex-direction: row;
        max-width: 900px;
        align-items: center;
    }

    .about .about-content .round-frame {
        margin-right: 1.5rem;
    }

    .about .about-content h2,
    .about .about-content p {
        text-align: left;
    }

    .about .about-content p {
        max-width: 500px;
    }

    .about .story {
        max-width: 700px;
        flex-direction: row;
    }

    .about .story::after {
        display: block;
    }

    .left,
    .right {
        width: 50%;
        padding: 0 15px;
    }
}

/* 1200px and up (large screens) */
@media screen and (min-width: 1200px) {
    .about .about-content {
        max-width: 1200px;
    }

    .about .about-content p {
        max-width: 600px;
    }

    .about .story {
        max-width: 1000px;
    }
}