:root {
    --section-p-y: calc(var(--spacing)*16);
    --section-p-x: calc(var(--spacing)*6);
    --linkedin-w: calc(var(--spacing)*10);
}

.image {
    display: none;
}

/* sm */
@media (min-width: 640px) {

    /* styles sm */
    :root {
        --section-p-y: calc(var(--spacing)*20);
        --section-p-x: calc(var(--spacing)*10);
    }
}

/* md */
@media (min-width: 768px) {

    /* styles md */
    .image {
        display: block;
    }

    section>div {
        display: grid;
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }

    .image img {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* lg */
@media (min-width: 1024px) {

    /* styles lg */
    :root {
        --section-p-y: calc(var(--spacing)*24);
        --section-p-x: calc(var(--spacing)*20);
    }
}

/* xl et plus */
@media (min-width: 1280px) {
    /* styles xl+ */
}

section {
    /*background-color: pink;*/
    padding: var(--section-p-y) var(--section-p-x);
    margin-left: auto;
    margin-right: auto;
}

.container>:not(:first-child),
ul>:not(:first-child) {
    margin-block-start: var(--space-y-5);
}

h1 {
    font-size: clamp(1.1rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 500;
}



ul {
    font-weight: 600;
}

.mention {}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    text-decoration: none;

}

.linkedin-link:hover {
    text-decoration: underline;
}

.linkedin-icon {
    width: var(--linkedin-w);
    aspect-ratio: 1/1;
    flex-shrink: 0;
}