.news-holder {
  display: flex;
  width: 100%;
  height: 400px;
}

.news-headlines {
  display: flex;
  flex-direction: column;
  list-style: none;
  position: relative;
  width: 350px;
  overflow: hidden;
}

.news-headlines li {
  padding: 5px 10px;
  position: relative;
  z-index: 20;
  color: #336699;
}

.nh-anim {
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.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%;
  color: #025D7E;
  background-color: #F8F9FA;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.news-headlines .selected {
  color: #025D7E;
}

.news-headlines {
  position: relative;
}

.news-preview {
  background: #F8F9FA;
  z-index: 5;
  width: 100%;
  height: 380px;
}

.news-preview .news-card {
  object-fit: cover;
  padding: 0px;
}
.news-preview .news-card img {
  max-width: 100%;
  height: 380px;
}
.news-preview .news-card .news-title > .title,
.news-preview .news-card .news-title-2 > .title {
  background-color: orange;
  color: #333;
  padding: 5px;
  font-weight: bold;
  margin-bottom: 0px;
}
.news-preview .news-card .news-title > .description,
.news-preview .news-card .news-title-2 > .description {
  padding: 10px; 
  background-color: #025D7E;
}

.news-content {
  background: #F8F9FA;
  padding: 5px;
  display: none;
  z-index: 10;
}

.top-content {
  display: block;
}
.business-climat-item {
  padding: 0px;
}
.business-climat-item > a {
  display: block;
  padding: 10px;
  text-decoration: none;
  border-bottom: 1px solid #EFEFEF;
  color: #333;
}
.business-climat-item > a:hover {
  background-color: #025D7E;
  color: white;
}

@media screen and (max-width: 640px) {
  .news-holder{
    display: none;
  }
}