/* Fix for spacing in brand strategy list items */
.brand-strategy-section .read-more-content li strong {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: block !important;
}

.brand-strategy-section .read-more-content li br {
    display: none !important; /* Hide the BR completely */
}

/* Add a tiny space using pseudo-element instead */
.brand-strategy-section .read-more-content li strong:after {
    content: "";
    display: block;
    height: 0.1em;
}
