/* 프리미엄 서비스 후기 섹션 스타일 */
.review-section {
    padding: 80px 0 0px;
    background-color: #fff;
    margin-bottom:0;
}

/* 섹션 제목 컨테이너 - 기존 섹션과 일관성 유지 */
.section-title-container {
    width: 1570px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 45px;
}

.section-subtitle {
    font-size: 22px;
    color: #FF6B00;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -1px;
    color: #111;
}

.section-description {
    font-size: 22px;
    color: #666;
    line-height: 1.6;
}

/* 리뷰 카드 섹션 - 전체 너비 사용 */
.review-cards-fullwidth {
    width: 100%;
    background: linear-gradient(to bottom, #f6f5fe, #eeeafd);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

/* 리뷰 행 스타일 */
.review-row {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

/* 리뷰 카드 스타일 */
.review-card {
    flex: 0 0 22.5vw;
    min-width: 22.5vw;
    /* height: 200px; */
    /* background-color: white; */
    border-radius: 12px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    /* padding: 25px; */
    overflow:hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.review-star {
    color: #ff9e1b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* 애니메이션 효과 */
.top-row {
    animation: slideRight 60s linear infinite;
}

.bottom-row {
    animation: slideLeft 60s linear infinite;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* 반응형 스타일 */
@media (max-width: 1600px) {
    .section-title-container {
        width: 90%;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    
    .review-card {
        flex: 0 0 250px;
        min-width: 250px;
        height: 180px;
        padding: 20px;
    }
}
