.about-inner {
    margin-top: var(--spacing-section);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-image-container {
    width: 33%;
}

.about-image {
    width: 240px;
    height: 240px;
    overflow: hidden;
    background-color: var(--color-lighter);
    border-radius: 50%;
    margin-left: auto;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-heading {
    margin-bottom: var(--spacing-md);
}

@media screen and (min-width: 800px) {

    .about-inner {
        flex-direction: row;
        gap: var(--spacing-x-lg);
    }

    .about-text {
        flex: 1;
        width: 66%;
    }

}