.blur-up {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: filter 400ms, -webkit-filter 400ms;
}
.blur-up.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}
.fade-box .lazyload,
.fade-box .lazyloading {
  opacity: 0;
  transition: opacity 400ms;
}

.fade-box img.lazyloaded {
  opacity: 1;
}
.articles{
  animation: fadeIn 0.3s ease-in forwards;
  opacity: 0;
  transition: all 0.2s ease-in;
  margin-bottom: 1rem;
}
.articles:hover{      
  translate: 0px -7px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}
.article-content h3{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  /* height: 76px; */
}
.article-content .green-line{
  content: '';
  display: block;
  width: 50%;
  height: 10px;
  background-color: var(--primary-color);
  margin: 0px 0 10px 0px;
}
.card{
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);     
}
.article-title img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  height:250px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.article-content{
  padding: 1rem;
}
.avatar{
  width:35px;
  border-radius:50%;
  overflow:hidden;
  margin-right:10px;
}
.avatar img{
  margin-right:10px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.animation-delay-0 {
  animation-delay: 0.1s;
}
.animation-delay-1 {
  animation-delay: 0.2s;
}
.animation-delay-2 {
  animation-delay: 0.3s;
}
.animation-delay-3 {
  animation-delay: 0.4s;
}
.animation-delay-4 {
  animation-delay: 0.4s;
}
.animation-delay-5 {
  animation-delay: 0.5s;
}
.animation-delay-6 {
  animation-delay: 0.6s;
}
.animation-delay-7 {
  animation-delay: 0.7s;
}