/* ==========================================================================
   CGM Divider Element
   ========================================================================== */

.cgm-divider-wrapper {
    width: 100%;
    /* Removes invisible text spacing */
    line-height: 0 !important; 
    font-size: 0 !important;
    display: block !important;
    /* FIX: A slight negative bottom margin pulls the footer up to overlap the gap */
    margin: 0 0 -2px 0 !important; 
    padding: 0 !important;
    overflow: hidden;
}

.cgm-divider-wrapper svg {
    display: block !important;
    width: 100%;
    /* Locks the height to match your intended 40px proportion */
    height: 40px; 
    margin: 0 !important;
    padding: 0 !important;
    /* FIX: Forces the vector graphic perfectly flush to the baseline */
    vertical-align: bottom !important; 
}

/* Mobile Responsiveness */
@media only screen and (max-width: 767px) {
    .cgm-divider-wrapper svg {
        /* Prevents the curve from getting too squished on mobile screens */
        height: 25px; 
    }
}