.assistant-page-snapshot {
    display: grid;
    gap: 8px;
    padding: 11px;
    margin: -2px 0 12px;
    border: 1px solid #c9e1cd;
    border-radius: 11px;
    background: #f5fbf6;
}

.assistant-page-snapshot > strong {
    color: var(--navy);
    font-size: 12px;
}

.assistant-snapshot-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.assistant-snapshot-stats span {
    display: grid;
    gap: 2px;
    padding: 6px 5px;
    border-radius: 7px;
    background: #e8f3e9;
    text-align: center;
}

.assistant-snapshot-stats b {
    color: var(--teal);
    font-size: 15px;
    line-height: 1;
}

.assistant-snapshot-stats small {
    color: var(--ink-soft);
    font-size: 8px;
    line-height: 1.3;
}

.assistant-snapshot-list {
    display: grid;
    gap: 6px;
    max-height: 220px;
    overflow: auto;
}

.assistant-snapshot-list article {
    display: grid;
    gap: 3px;
    padding: 7px 8px;
    border-right: 3px solid var(--teal);
    border-radius: 7px;
    background: #fff;
}

.assistant-snapshot-list article strong {
    color: var(--navy);
    font-size: 11px;
}

.assistant-snapshot-list article p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 10px;
    line-height: 1.5;
}

.assistant-snapshot-list article small,
.assistant-snapshot-empty {
    color: #75907c;
    font-size: 9px;
    line-height: 1.5;
}

.assistant-snapshot-empty {
    display: block;
}

@media (max-width: 520px) {
    .assistant-snapshot-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
