/* 新文章徽章 — 卡片右上角 NEW 动态标识 */
.posts-item { position: relative !important; }

.zm-new-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
}

.zm-new-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    background-color: #eef6ff;
    color: var(--theme-color, #556af1);
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 1px 9px 1px 15px;
    overflow: hidden;
    border: .5px solid rgba(59, 130, 246, .15);
}
.zm-new-badge:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(59, 130, 246, .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease;
}
.zm-new-badge:hover:after {
    width: 120px;
    height: 120px;
}
.zm-new-badge:hover {
    box-shadow: 0 2px 6px rgba(59, 130, 246, .2);
    background-color: #e6f0ff;
}
