.more-btn {
    margin-top: 30px;
}

/* ----- 서브 비주얼 ----- */
.sub-visual-overlay {
    background:
        linear-gradient(90deg, rgba(27, 20, 13, 0.85) 0%, rgba(27, 20, 13, 0) 66%),
        rgba(0, 0, 0, 0.2);
}

.sub-visual-content p {
    color: #fff;
}

/* ----- Review list section ----- */
.review-list-cont {
    padding: 100px 0;
}

/* ----- Best 후기 ----- */
.best-section {
    margin-bottom: 100px;
}

.best-card {
    width: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-sizing: border-box;
}

.best-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #000;
}

.best-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.4px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
}

.best-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    padding: 4px 0;
    background: #00b2b0;
    color: #fff;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.5;
    flex-shrink: 0;
}

.best-card-body {
    flex: 1;
    width: 100%;
    aspect-ratio: 1/0.375;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    min-height: 135px;
}

.best-card-text {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    letter-spacing: -0.34px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.best-card-date {
    text-align: right;
    font-size: 16px;
    color: #6c6c6c;
    letter-spacing: -0.32px;
    line-height: 1.5;
}

/* ----- 전체 후기 섹션 ----- */
.review-list-section .filter-bar {
    padding-top: 0;
}

.review-row-item {
    min-height: 164px;
}

/* 테이블 컬럼 너비 */
.col-no {
    width: 9.091%;
    flex-shrink: 0;
    text-align: center;
}

.col-title {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.col-thumb {
    width: 14.286%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.col-date {
    width: 12.987%;
    flex-shrink: 0;
    text-align: center;
}

.th-col.col-title {
    justify-content: center;
}

.td-col.col-no {
    color: #555;
}

.td-col.col-title {
    color: #333;
}

.td-col.col-date {
    color: #6c6c6c;
}

/* 행 - 텍스트 */
.review-title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 썸네일 */
.review-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1/0.775;
    background: #d9d9d9;
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
}

.picked-swiper .swiper-slide {
    width: 420px;
}

.review-empty {
    text-align: center;
    padding: 50px 0;
}

.pagination {
    padding-top: 70px;
}

@media (max-width: 1023px) {
    .sub-visual-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 123.97%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    }

}

/* ===== 모바일 ===== */
@media (max-width: 768px) {
    .sub-visual-bg img {
        scale: 1;
        object-position: 30%;
    }

    .review-list-cont {
        padding: 36px 0 60px;
    }

    /* 베스트 */
    .best-section {
        margin-bottom: 20px;
    }

    .best-section .picked-title-wrap {
        margin-bottom: 20px;
    }

    .picked-swiper {
        width: calc(100% + 24px);
    }

    .best-card {
        padding: 20px;
        gap: 20px;
    }

    .best-card-head {
        padding-bottom: 16px;
    }

    .best-card-title {
        font-size: 16px;
    }

    .best-badge {
        font-size: 14px;
        width: 54px;
        padding: 2px 0;
    }

    .best-card-body {
        aspect-ratio: 1/0.45;
        gap: 5px;
        min-height: 0;
    }

    .best-card-text {
        font-size: 16px;
        /* -webkit-line-clamp: 5; */
    }

    .best-card-date {
        font-size: 14px;
    }

    /* 전체 후기 */
    .review-list-section .filter-bar {
        gap: 16px;
    }

    .review-row-item {
        min-height: 0;
    }


    /* 테이블 컬럼 너비 */
    .col-no {
        order: 1;
        text-align: left;
    }

    .col-date {
        width: auto;
        order: 2;
    }

    .col-title {
        order: 3;
        width: 100%;
        gap: 8px;
    }

    .td-col.col-title {
        width: calc(85% - 12px);
    }

    .col-thumb {
        order: 4;
        justify-content: flex-start;
        padding: 0;
    }

    .review-title {
        /* white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 15px; */
    }

    .picked-swiper .swiper-slide {
        width: 310px;
    }

    .pagination {
        padding-top: 30px;
    }
}