/* Custom CSS for styles that need to be updated without running npm run build */

/* Fix Elementor/WordPress content list styles missing bullets */
.prose ul, 
.elementor-text-editor ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.prose ol, 
.elementor-text-editor ol {
    list-style-type: decimal !important;
    padding-left: 1.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.prose li, 
.elementor-text-editor li {
    margin-bottom: 0.5rem !important;
    display: list-item !important;
}

/* Make bullets stylish with the firm's gold color */
.prose ul > li::marker,
.elementor-text-editor ul > li::marker {
    color: #C89A4B !important;
}
