.store-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.store-list a {
    text-decoration: none !important;
    color: black;
    padding: 12px;
    background-color: #f7f7f7;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-list a > div {
    display: flex;
    gap: 8px;
    align-items: center;
}

.store-list a h3 {
    margin-bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.store-list a img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
}
