﻿/*------------------------
Flex Layout
------------------------*/
.news-item-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  
  width: 100%;
}

/* Top of Header */
.news-item-header .header-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  
  height: 100%;
  padding: 1em 1em;
}

.news-item-header .news-item-header-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;

  height: 100%;
  width: 75%;
}

.news-item-header .news-item-header-logo .news-item-header-logo-badge {
  width: 25%;
}

.news-item-header .news-item-header-logo .news-item-header-logo-city {
  width: 50%;
}

.news-item-header .pio-info {
  width: 75%;
  font-size: 1em;
  text-align: center;
}

/* Bottom of Header */
.news-item-header .header-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-item-header .header-bottom .immediate-release {
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: underline;
  
  padding: 0 1em;
}

/*------------------------
Font Styling
------------------------*/

.news-item-header .bold {
  font-weight: 600;
}

.news-item-header .italics {
  font-style: italic;
}

/*------------------------
Media Queries
------------------------*/
@media screen and (min-width: 319px) {
    .news-item-header{
        display: block;
        height:150px;
    }
        .news-item-header .header-bottom {
               display: none;


        }
}
@media screen and (min-width: 600px){
    .news-item-header .header-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
     .news-item-header{
        height:20vh;
    }
  /* Top of Header */
  .news-item-header .header-top {    
    display: -webkit-box;    
    display: -webkit-flex;    
    display: -ms-flexbox;    
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .news-item-header .news-item-header-logo {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 85%;
  }
  
  .news-item-header .news-item-header-logo .news-item-header-logo-badge {
    width: 25%;
  }
  
  .news-item-header .news-item-header-logo .news-item-header-logo-city {
    width: 50%;
  }
  
  .news-item-header .pio-info {
    width: 50%;
    font-size: 1.1em;
    
    text-align: right;
  }
  
  /* Bottom of Header */
  .news-item-header .header-bottom {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  
  .news-item-header .header-bottom .immediate-release {
    font-size: 1.25em;
  }
}

@media screen and (min-width: 800px){
  /* Bottom of Header */
  .news-item-header .header-bottom .immediate-release {
    font-size: 1.5em;
  }
}

@media screen and (min-width: 1250px){
  /* Top of Header */
  .news-item-header .header-top {   
  }
  
  .news-item-header .news-item-header-logo {
    width: 50%;
  }
  
  .news-item-header .news-item-header-logo .news-item-header-logo-badge {
  }
  
  .news-item-header .news-item-header-logo .news-item-header-logo-city {
  }
  
  .news-item-header .pio-info {
    width: 50%;
    font-size: 1.2em;
  }
  
  /* Bottom of Header */
  .news-item-header .header-bottom {
  }
  
  .news-item-header .header-bottom .immediate-release {
  }
}

@media screen and (min-width: 2000px){
  /* Top of Header */
  .news-item-header .pio-info {
    font-size: 2.2em;
  }
  
  /* Bottom of Header */
  .news-item-header .header-bottom .immediate-release {
    font-size: 2.5em;
  }
}

@media screen and (min-width: 3000px){
  /* Top of Header */
  .news-item-header .pio-info {
  }
  
  /* Bottom of Header */
  .news-item-header .header-bottom .immediate-release {
    font-size: 3.5em;
  }
}