.stores {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    column-gap: 2rem;
    row-gap: 1rem;
    grid-auto-flow: dense;
    margin-bottom: 2rem;
    align-items: start;
}

.store {
    margin-bottom: 3rem;
    border: var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    display: grid;
}
/* .store figure {
    padding-block: 33%;
    background: var(--back-3);
    border-radius: var(--radius);
    margin-bottom: .5rem;
    width: 50%;
} */
.store img {
    --offset: calc(-1rem - var(--border-1));
    width: calc(100% + 2rem + (var(--border-1) * 2));
    margin-inline: var(--offset);
    margin-top: var(--offset);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}
.store h3 {
    color: var(--blue);
    margin-bottom: 0;
    margin-top: 1em !important;
}
.store h3 .fa-star {
    color: var(--red);
}
.store address span { white-space: nowrap; }
.store .hours { margin-top: 1rem; }
