.abr-post-stats{
display:inline-flex;
align-items:center;
gap:10px;
font-size:14px;
font-weight:500;
line-height:1;
color:#05070B;
}

.abr-views,
.abr-likes-wrap{
display:inline-flex;
align-items:center;
gap:6px;
}

.abr-like-btn{
appearance:none;
-webkit-appearance:none;
background:transparent !important;
border:none !important;
box-shadow:none !important;
padding:0 !important;
margin:0 !important;
cursor:pointer;
display:inline-flex;
align-items:center;
justify-content:center;
}

.abr-like-icon{
width:14px;
height:14px;
display:block;
}

.abr-like-icon path{
fill:transparent;
stroke:#9AA6B2;
stroke-width:2;
transition:fill .2s ease, stroke .2s ease, transform .15s ease;
transform-origin:center;
}

.abr-like-btn:hover .abr-like-icon path{
transform:scale(1.08);
stroke:#4F8FD9;
}

.abr-like-btn.is-liked .abr-like-icon path{
fill:#4F8FD9;
stroke:#4F8FD9;
animation:abr-like-pop .25s ease;
}

.abr-like-count{
font-weight:600;
}

@keyframes abr-like-pop{
0%{transform:scale(0.7);}
70%{transform:scale(1.25);}
100%{transform:scale(1);}
}