/**
 *  Responsive Grid Media Queries  for Newsy- 1280, 1024, 768, 480
 *   1280-1024   - desktop (default grid)
 *   1024-768    - tablet landscape
 *   768-480     - tablet 
 *   480-less    - phone landscape & smaller
 * 
 */
 @media all and (min-width: 1024px) and (max-width: 1280px) { 
 
 }

 @media all and (min-width: 768px) and (max-width: 1024px) { 

 }
 
 @media all and (min-width: 480px) and (max-width: 768px) {

  }
 
 @media all and (max-width: 480px) { 
       .camera_caption_content {
        padding-top:1px;
       }
       .camera_caption > div {
        width: 80%;
    }
    .camera_caption h2, .camera_caption h3, .camera_caption h4, .camera_caption h2 span, .camera_caption h3 span, .camera_caption h4 span, .camera_caption h2 {
        font-size: 1.2em!important;
    }
    .camera_caption_content.sb168 {
        padding-top: 40px!important;
    }

    .camera_caption a,   .camera_caption p {
        font-size: 1em!important;
    }

 }