/* .section__projects {
    display: flex;
    flex-direction: column;
}

.section__projects h2 {
    align-self: flex-end;
} */

.section__projects__row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6rem;
}

.section__projects__row a.pic,
.section__projects__row video {
    width: 100%;
    margin-bottom: 1em;
}

.section__projects__row div {
    width: 100%;
    align-self: flex-end;
}

.section__projects__row img {
    max-width: 100%;
}

.section__projects__row h2 {
    font-size: 2em;
}

.section__projects__row h5 {
    margin-top: calc(var(--page-padding)/2);
    font-weight: 100;
    font-size: .6em;
    text-transform: uppercase;
}

/* .section__projects__row video {
    max-width: 80%;
} */

/* .section__projects__row a.button {
    position: relative;
    display: inline-block;
    padding: 0.7rem 1.5rem 0.7rem 4.5rem;
    margin-top: 2rem;
    background: transparent;
    border: 1px solid rgb(var(--sf-color));
    border-radius: 5px;
    color: rgb(var(--sf-color));
    font-family: var(--font-prime-family);
    font-size: 1.5rem;
    font-weight: 100;
    letter-spacing: .1rem;
    text-transform: uppercase;
}

.section__projects__row a.button,
.section__projects__row a.button:hover,
.section__projects__row a.button:active,
.section__projects__row a.button:focus {
    color: rgb(var(--sf-color));
    text-decoration: none;
}

.section__projects__row a.button svg {
    position: absolute;
    display: block;
    top:0;
    bottom:0;
    left:1.5rem;
    width:1.5rem;
    margin: auto 0;
    stroke: rgb(var(--sf-color));
    stroke-width: 2px;
    fill:none;
    transition: all .2s ease-in;
}

.section__projects__row a.button:hover svg,
.section__projects__row a.button:active svg,
.section__projects__row a.button:focus svg {
    transform: rotate(45deg);
} */

@media screen and (min-width: 768px) {
    .section__projects__row a.pic,
    .section__projects__row video {
        width: 55%;
        margin-bottom: 0;
        padding-right: var(--page-padding);
    }

    .section__projects__row div {
        width: 45%;
    }

    .section__projects__row h2 {
        font-size: 2.2em;
    }
}


@media screen and (min-width: 1024px) {
    .section__projects__row {
        justify-content: space-between;
        margin-bottom: 6em;
    }

    .section__projects__row div {
        width: 42%;
        font-size: 2em;
    }

    .section__projects__row h2 {
        font-size: 1.4em;
    }

    .section__projects__row h5 {
        font-size: 0.4em;
    }
}