.eb-sidebar-recent {
    border: 1px solid var(--eb-bdr);
    border-radius: 8px;
    overflow: hidden;
}

.eb-sidebar-recent-header {
    background: var(--eb-off);
    padding: 14px 18px;
    border-bottom: 1px solid var(--eb-bdr);
}

.eb-sidebar-recent-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--eb-txt-muted);
}

.eb-recent-list {
    padding: 8px 0;
}

.eb-recent-item {
    display: block;
    text-decoration: none;
    padding: 10px 18px;
    border-bottom: 1px solid var(--eb-bdr);
    transition: background .15s;
}

.eb-recent-item:last-child {
    border-bottom: none;
}

.eb-recent-item:hover {
    background: var(--eb-off);
}

.eb-recent-item-date {
    font-size: 11px;
    color: var(--eb-txt-muted);
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 3px;
}

.eb-recent-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--eb-txt);
    line-height: 1.35;
    transition: color .15s;
}

.eb-recent-item:hover .eb-recent-item-title {
    color: var(--eb-blue);
}