.section__listing__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.section__listing__row:first-of-type {
    margin-top: calc(var(--page-padding)*3);
}

.section__listing__row div {
    display: flex;
    flex-direction: column;
    width: 70%;
}

.section__listing__row h4 {
    font-size: 1.5em;
    font-weight: 400;
}

.section__listing__row h5 {
    font-size: 0.6em;
    font-weight: 100;
    text-transform: uppercase;
}

.section__listing__row p {
    text-transform: uppercase;
}

.section__listing__row figure {
    width: 20%;
    max-width: 150px;
}

.section__listing__row figure svg {
    display: block;
    max-height: 35px;
    margin: auto;
}

.section__listing__wrapper hr {
    width: 100%;
    height: 1px;
    margin-top:  calc(var(--page-padding)/2);
    margin-bottom: calc(var(--page-padding)*3);
}


@media screen and (min-width: 768px) {
    .section__listing__row div {
        width: 35%;
    }
}

@media screen and (min-width: 1024px) {

}

@media screen and (min-width: 1200px) {
	.section__listing__row:first-of-type {
        margin-top: calc(var(--page-padding));
    }

    .section__listing__wrapper hr {
        margin-bottom: calc(var(--page-padding));
    }
}