/* =====================================================
   失物列表 & 招领列表页专属样式
   ===================================================== */

/* ---------- 页面头部 ---------- */
.list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.list-header h3 { margin: 0; }
.list-header h3 i { margin-right: 8px; }

/* ---------- 物品卡片网格 ---------- */
.item-card {
    cursor: pointer;
    height: 100%;
    transition: all 0.3s ease;
}
.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.item-card .card-body {
    display: flex;
    flex-direction: column;
}
.item-card .item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.item-card .item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.item-card .item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.item-card .item-meta {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.item-card .item-meta div { margin-bottom: 3px; }
.item-card .item-meta i {
    width: 18px;
    text-align: center;
    margin-right: 6px;
}

/* ---------- 空状态 ---------- */
.list-empty .btn { margin-top: 1rem; }
