.full-bleed-image {
    width: 100vw !important;
    max-width: None;
    
    /* Center the image and pull it out of the container. 
       50% is half the container width, 50vw is half the viewport width. */
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important; 
    
    /* Ensure height scales proportionally */
    height: auto; 
    
    /* Often needed to ensure the image breaks properly */
    display: block;
}
