
#stores .page-stores{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#stores .page-stores .store-item{
    padding: 40px;
    margin: 0px;
    background-color: var(--color-white);
}

#stores .page-stores .store-item-container{
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 50px;
    align-items: start;
}

#stores .page-stores .store-picture img{
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

#stores .store-title{
    font-size: 1.5rem;
    line-height: 1.875rem;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    #stores .page-stores .store-item-container{
        grid-template-columns: repeat(1, 1fr);
    }
    #stores .store-title{
        font-size: 1.25rem;
        line-height: 1.625rem;
    }
    #stores .page-stores .store-item{
        padding: 30px;
    }
}