.ws-news-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
.ws-news-wrapper * {
  box-sizing: border-box;
}
.ws-news-wrapper .container-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ws-news-wrapper .container-wrapper .news-card {
  position: relative;
  margin: 10px;
  background-color: #fff;
  overflow: hidden;
  width: 32%;
  transition: all 1.2s ease;
  opacity: 1;
}
.ws-news-wrapper .container-wrapper .news-card:first-child {
  margin-left: 0;
}
.ws-news-wrapper .container-wrapper .news-card:last-child {
  margin-right: 0;
}
.ws-news-wrapper .container-wrapper .news-card:hover {
  opacity: 0.75;
}
@media (max-width: 991px) {
  .ws-news-wrapper .container-wrapper .news-card {
    width: 47%;
  }
}
@media (max-width: 765px) {
  .ws-news-wrapper .container-wrapper .news-card {
    width: 100%;
  }
}
.ws-news-wrapper .container-wrapper .news-card .over-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.ws-news-wrapper .container-wrapper .news-card-header {
  position: relative;
}
.ws-news-wrapper .container-wrapper .news-card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.ws-news-wrapper .container-wrapper .news-card-header .author {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.65em;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0;
}
.ws-news-wrapper .container-wrapper .news-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0;
}
.ws-news-wrapper .container-wrapper .news-card-body p {
  margin: 0 0 40px;
}
.ws-news-wrapper .container-wrapper .news-card-body .news-date {
  margin: 0 0 2px;
  font-size: 0.75em;
  color: #6c757d;
}
.ws-news-wrapper .container-wrapper .news-card-body .card-text {
  margin-top: 10px;
  margin-bottom: 10px;
}