.overflox-x {
    --offset: clamp(1rem, 2vw, 2rem);
    padding-left: var(--offset);
    padding-right: var(--offset);
    margin-left: calc(-1 * var(--offset));
    margin-right: calc(-1 * var(--offset));
    overflow-x: hidden;
    overflow-y: hidden;
}

.grey_dot {
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #91A2B6;
}

.blog--featured-block--author-date {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #91A2B6;
}
.blog--popular-head-title{
        font-weight: 400;
        font-size: 13px;
        line-height: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
}

a:hover .blog--popular-head-title{
    color: var(--green);
}