/* Fix double bullets on desktop - remove the :before bullet on desktop */
@media (min-width: 769px) {
    .photo-tips-list {
        list-style-type: disc;
        padding-left: 20px;
    }
    
    .photo-tips-list li {
        margin-bottom: 10px;
        padding-left: 0 !important;
    }
    
    /* Remove the custom bullet on desktop */
    .photo-tips-list li:before {
        display: none !important;
    }
}
