@media (max-width: 768px) {
    #about {
        flex-direction: column;
        margin-bottom: 3em;
        margin-top: 0.5em;
    }

    #aboutContent {
        max-width: 100%;
    }

    #preview {
        margin-bottom: 1em;
    }
}

@media (min-width: 769px) {
    #about {
        margin: 1.5em 3em 3em;
    }

    #preview {
        margin: 3em;
    }

    #aboutContent {
        max-width: 75%;
    }
}

/*
    About
*/

#about {
    align-items: center;
    display: flex;
    gap: 1em;
}

#about figure {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

#about figcaption {
    color: var(--textCaption);
    font-size: 0.8em;
}

#about img {
    border-radius: 50px;
    max-width: 150px;
    width: 100%;
}

#aboutSubTitle {
    color: var(--textPrimary);
    font-size: 1.2em;
    font-weight: bolder;
    margin-bottom: 0.75em;
}

#aboutSubTitle a {
    color: var(--textPrimary);
    text-decoration: underline;
    text-decoration-color: var(--textCaption);
    text-decoration-skip-ink: none;
    text-underline-offset: 0.25em;
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

#aboutSubTitle a:hover {
    text-decoration-color: var(--accent);
    color: var(--accent);
}

/*
    Preview
*/

#preview h2 {
    border-left: 4px solid var(--accent);
    font-size: 2em;
    margin-bottom: 0.75em;
    padding-left: 0.5em;
}

#preview ul {
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
    list-style: none;
}

#preview li {
    display: contents;
}