/* ===== 碎碎念气泡样式 ===== */
.snippet-bubble {
    padding: 16px 20px 18px;
    margin-bottom: 14px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;

    /* 手账网格纹理背景 */
    background-image:
        linear-gradient(to right, rgba(180, 160, 140, 0.10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(180, 160, 140, 0.10) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0;
}

.snippet-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* ===== 行布局：左侧头像 + 右侧整体 ===== */
.snippet-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* ===== 头像 ===== */
.snippet-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

/* ===== 右侧整体容器 ===== */
.snippet-body {
    flex: 1;
    min-width: 0;
}

/* ===== 头部：时间 ===== */
.snippet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.snippet-time {
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 0.3px;
}

/* ===== 内容 ===== */
.snippet-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #1e293b;
}