/* 후기 섹션 스타일 */
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonials-summary {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-3px);
}

.summary-icon {
    font-size: 1.2rem;
}

.summary-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.testimonials-navigation {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    transform: translateY(-50%);
    z-index: 2;
}

.nav-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-button:hover {
    background: transparent;
    transform: scale(1.1);
}

.nav-icon {
    color: #ffffff;
    font-size: 1.2rem;
}

.testimonials-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}

.testimonials-subtitle {
    font-size: 0.85rem;
    color: #ffffff;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonials-container {
    width: 100%;
    max-width: 1400px;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.testimonials-scroll {
    position: absolute;
    width: 100%;
    transition: all 0.5s ease;
    opacity: 1;
}

@keyframes dissolve {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.testimonials-scroll.renew {
    animation: dissolve 1s ease;
}

.testimonial-item {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1rem;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.author-name strong {
    font-weight: 700;
}

.author-detail {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}
