.news-holder p {
    margin-bottom: 12px;
}

.news-holder {
    display: flex;
    flex-wrap: wrap;
}

.news-holder * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.news-headlines {
  list-style: none;
  position: relative;
}

  .news-headlines li {
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 20;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    background: #444343;
  }
  .news-headlines li .eventdate {
    flex: 0 0 60px;
    max-width: 60px;
    border: 2px solid #fff;
    text-align: center;
    height: 60px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
  }
  .news-headlines li .eventdate span {
    display: block;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
  }
  .news-headlines li .eventtext {
    flex: 0 0 76%;
    max-width: 76%;
    font-family: 'ProximaNova-Semibold';
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    padding-left: 8px;
  }
  .news-headlines li.selected{
     background: #ee2832;
  }

  .nh-anim {
    -webkit-transition: all .75s ease-out;
    -moz-transition: all .75s ease-out;
    -o-transition: all .75s ease-out;
    transition: all .75s ease-out;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }

  .news-headlines li:hover, a:hover {
      cursor: pointer;
  }
  
  .news-headlines .highlight {
     width: 100%;
     position: absolute;
     top: 0;
     left: 0;
     z-index: 10;
  }

  .news-headlines .highlight:before {
    display: none;
  }

.news-headlines {
    flex: 0 0 38%;
    max-width: 38%;
    margin-left: 2%;
}

.news-preview {
  flex: 0 0 60%;
  max-width: 60%;
   position: relative;
   z-index: 5;
   margin-left: -1px;
   min-height: 304px;
   position: relative;
}

  .news-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  } 
  .event_text {
    position: absolute;
    bottom: 0;
    background: rgba(238,40,50,0.6);
    padding: 15px;
    text-transform: uppercase; color: #fff;
    font-family: 'ProximaNova-Semibold';
    font-size: 15px; line-height: 20px;
  }

.news-content {
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    display: none;
    height: 406px;
}

.top-content {
    display: block;
}

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}