.vn-card-post{
  width: 100%;
  border-radius: 0px 24px 0 24px;
  overflow: hidden;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.vn-card-post__image img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.vn-card-post__body{
  padding: 24px;
  background-color: #FAFAFA;
}

.vn-card-post__date{
  font-size: 16px;
  color: #8a8a8a;
  margin-bottom: 6px;
}

.vn-card-post__title{
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 12px;
  font-weight: 700;
}

.vn-card-post__title a{
  color: inherit;
  text-decoration: none;
}
.vn-card-post__title a:hover{
  text-decoration: underline;
}

.vn-card-post__meta{
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.vn-card-post__row{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #000000;
}

.vn-card-post__label{
  color: #666;
  white-space: nowrap;
  font-weight: 700;
}

.vn-card-post__value a{
  text-decoration: none;
  color:#000000
}
.vn-card-post__value a:hover{
  text-decoration: underline;
}

.vn-card-post__icon{
  width: 18px;
  height: 18px;
  background-image: url("icon-author.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 18px;
}

.vn-card-post__icon--lawyer{
  background-image: url("icon-ls.svg");
}
@media (max-width: 768px) {
  .vn-card-post__date{
    font-size: 14px;
  }
  .vn-card-post__title{
    font-size: 16px;
  }
  .vn-card-post__row{
    font-size: 14px;
  }
}

