/* 컨테이너 여백 확보 (하단 페이징 점을 위해 padding 추가) */
.main-review-wrap { 
    margin: 0 auto; 
    position: relative; 
    padding-bottom: 50px; /* 점이 들어갈 공간 */
}

/* 스와이퍼 래퍼 초기화 (Grid 삭제) */
.main-review-list {
    padding: 10px;
    margin: 0;
    list-style: none;
}

/* 카드 디자인 */
.main-review-list li {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.main-review-list li:hover {
    transform: translateY(-5px);
}

.main-review-list .card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.main-review-list .img-box {
    width: 100%;
    height: 180px; 
    overflow: hidden;
    background: #f5f5f5;
}

.main-review-list .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-review-list .txt-box {
    padding: 20px;
}

/* 고객 이름과 별점 양쪽 정렬 */
.main-review-list .customer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.main-review-list .customer-info strong {
    font-size: 16px;
    color: #222;
}

/* 별점 영역 디자인 */
.main-review-list .star {
    display: flex;
    align-items: center;
    gap: 5px;
}
.main-review-list .star img {
    width: 16px;
    height: 16px;
}
.main-review-list .star p {
    margin: 0;
    font-weight: bold;
    font-size: 15px;
    color: #222; /* 텍스트 색상 */
}

.main-review-list .review-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    height: 63px; /* 3줄 제한 */
    overflow: hidden;
    margin-bottom: 20px;
}

/* 담당자 박스 */
.main-review-list .manager-info {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    gap: 10px;
}

.main-review-list .manager-icon {
    width: 30px;
    height: 30px;
    background: #345ee0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.main-review-list .m-name {
    font-size: 13px;
    color: #333;
    margin-bottom: 2px;
}

.main-review-list .m-desc {
    font-size: 11px;
    color: #888;
}
