.news-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.news-wrapper .news-panel {
    width: 49%;
    background: #fff;
    border: solid 1px #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.news-wrapper .news-panel:hover {
    border: solid 1px #e0e0e0;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -ms-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -o-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}
.news-wrapper .news-panel .image-container {
    width: 40%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.news-wrapper .news-panel .image-container .overlay {
    position: absolute;
    z-index: 2;
    top : 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.news-wrapper .news-panel:hover .image-container .overlay {
    opacity: 0.3;
}
.news-wrapper .news-panel .image-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top : 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}
.news-wrapper .news-panel:hover .image-container img {
    width: 120%;
    height: 120%;
    top : -10%;
    left: -10%;
}
.news-wrapper .news-panel .content-container {
    width: 55%;
    padding: 2%;
}
.news-wrapper .news-panel .content-container h2{
    color: var(--blue);
    font-family: 'Gotham-Medium';
    margin-bottom: 3px;
}
.news-wrapper .news-panel .content-container small {
    font-family: 'Gotham-Book';
    color: #666;
    font-size: 12px;
}
.news-wrapper .news-panel .content-container p {
  font-family: 'Gotham-Book';
  font-size: 12px;
  margin-top: 10px;
}
.blog-content-area .content-area .body-common p.datepost {
  margin-bottom: 10px;
  font-family: 'Gotham-Book';
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
}
.blog-content-area .content-area .body-common p.datepost b {
  font-family: 'Gotham-Medium';
}

@media(max-width: 1024px) {
    .news-wrapper .news-panel {
        width: 100%;
        flex-wrap: wrap;
    }
    .news-wrapper .news-panel .image-container {
        width: 100%;
        height: 150px;
    }
    .news-wrapper .news-panel .content-container {
        padding: 10px;
        width: 100%;
    }
}
