/*
 * 기부금 보고서 목록 페이지(content/report-list) 전용 스타일
 * - 필터 바(대상 카테고리 / 연월 칩)
 * - 보고서 카드 목록
 * 카테고리 오버레이/월 선택 모달은 공통 fragments/filter.css, dateRangeModal 을 재사용한다.
 */

#innerCnt.content-bg-white {
    background: #fff;
}

/* 필터 바(.filter-bar/.filter-chips)는 /collection 과 동일한 fragments/filter.css 를 재사용한다.
   목록 상단 여백만 보정한다. */
.filter-bar {
    padding-bottom: 6px;
}

/* ===== 카드 목록 ===== */
.report-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 6px 16px 40px;
}

.report-list.is-hidden {
    display: none;
}

.report-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
}

.report-card-thumb {
    width: 100%;
    height: 140px;
    background: #f2f4f6;
}

.report-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.report-card-img-default {
    object-fit: contain;
    padding: 30px;
    box-sizing: border-box;
}

.report-card-body {
    padding: 0 16px;
}

.report-card-body .dolgo-tags {
    margin-top: 10px;
    margin-bottom: 10px;

}

.report-card-title {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #34383e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #edf0f3;
    padding-top: 13px;
    padding-bottom: 15px;
}

.report-card-amount {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.report-card-amount .lbl {
    color: #4e5968;
    font-weight: 400;
}

.report-card-amount .val {
    color: #358ae3;
    font-weight: 600;
}

.report-card-date {
    font-size: 13px;
    color: #8b95a1;
}

/* ===== 빈 상태 ===== */
.report-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 16px;
    color: #8b95a1;
}

.report-empty.is-hidden {
    display: none;
}

.report-empty img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.report-empty p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}
