.badge {
  display: inline-block;
  border-radius: 6px;
  padding: 0 8px;
  background-color: #33AD4E1F;
  color: #33AD4E;
  text-wrap: nowrap;
}
.author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.author-row > .profile-icon {
    width: 24px;
    border-radius: 50%;
}
.article__rating {
    background: url('star.svg') 0 0 repeat-x;
    height: 24px;
    position: relative;
    width: 120px;
}
.article__rating__progress {
    background: url('star_filled.svg') 0 0 repeat-x;
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    width: 120px;
}
.entry__anons { 
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    line-clamp: 4; 
    -webkit-box-orient: vertical;
}
.entry__info {
    width: 100%;
    position: absolute;
    bottom: 0;
}
.entry__item {
    height: 550px;
    position: relative;
    border: 1px solid #F1F1F1;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 40px !important;
}
.entry__item__row {
    padding: 2px 0;
}
.entry__item__tags__menu {
    padding: 6px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.entry__item__tags {
    padding: 6px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: absolute;
    z-index:11;
    top:0;
}
.entry__item__date-post {
    text-wrap: nowrap;
}
.entry__item__post {
    display: flex;
    justify-content: space-between;
    text-wrap: nowrap;
    flex-wrap: wrap;
}
.entry__item__views {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
    color: #A0A3A7;
    padding-right: 14px;
}
.entry__link {
    margin-top: 0 !important;
    margin: 0;
}
.icon--eye {
    width: 22px;
    height: 22px;
    background: url('eye.svg') 0 0 no-repeat;
    transform: scale(0.75);
}
.profile-icon {
  width: 24px;
  height: 24px; 
  border-radius: 50%;
  flex-shrink: 0;
}
.profile-icon img {
    width: 24px;
    height: 24px; 
    object-fit: cover;
    border-radius: 50%;
}
.title-row {
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    line-clamp: 3; 
    -webkit-box-orient: vertical;
    height: 78px;
}
div[class^="entry__item__date"] {
    font-size: 14px;
    color: #A0A3A7;
}
@media (min-width: 920px) and (max-width: 1220px) {
    .entry__item {
        height: 575px;
    }
}
@media (max-width: 768px){
    .author-row { 
        font-size: 16px; 
    }
    .title-row {
        height: 72px;
    }
}
@media (max-width: 767px){
    .entry__item {
        height: 450px;
    }
    .entry__link {
        display: block !important;
    }
    .entry__anons { 
        overflow: hidden;
        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        line-clamp: 3; 
        -webkit-box-orient: vertical;
    }
    .entry__item__views {
        align-items: end;
        margin-left: -6px;
    }
}
@media (max-width: 500px) {
    .entry__item__tags {
        transform-origin: left top;
        transform: scale(0.75);
    }
}
@media (max-width: 420px) {
    .entry__item {
        height: 485px;
    }
    .title-row { 
        -webkit-line-clamp: 4;
        line-clamp: 4; 
        height: auto;
    }
    .entry__item__date-post {
        text-wrap: auto;
    }
    .entry__item__post {
        text-wrap: auto;
    }
    .entry__info {
        width: 90%;
    }
}
@media (max-width: 400px) {
    .rating-row {
        padding-top: 12px;
    }
}