/* ============================================
 * Module: Testimonials
 * Source views: index, show, _testimonial-card
 * ============================================ */

/* --- Card --- */
.testimonial-card {
    border: none;
    border-left: 4px solid var(--site-primary, #6366f1);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* --- Quote --- */
.testimonial-quote {
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    padding-left: 1.5rem;
}
.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    left: -0.15rem;
    top: -0.6rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--site-primary, #6366f1);
    opacity: 0.15;
    line-height: 1;
}

/* --- Rating --- */
.testimonial-rating {
    font-size: 0.95rem;
    letter-spacing: 2px;
}

/* --- Avatar --- */
.testimonial-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 3px solid var(--site-primary, #6366f1);
    opacity: 0.9;
    flex-shrink: 0;
    display: block;
}
.testimonial-avatar-placeholder {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    background: var(--site-primary, #6366f1);
    opacity: 0.75;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.1rem;
}

/* --- Author info --- */
.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f2937;
}
.testimonial-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.testimonial-name a:hover {
    color: var(--site-primary, #6366f1);
}
.testimonial-meta {
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 2px;
}
.testimonial-meta-sep {
    margin: 0 5px;
    color: #d1d5db;
}

/* --- Detail link --- */
.testimonial-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--site-primary, #6366f1);
    text-decoration: none;
    transition: color 0.2s;
}
.testimonial-link:hover {
    color: var(--site-secondary, #64748b);
}
.testimonial-link i {
    transition: transform 0.2s;
}
.testimonial-link:hover i {
    transform: translateX(3px);
}

/* --- Show (detail page) --- */
.testimonial-quote-large {
    position: relative;
    font-size: 1.25rem;
    line-height: 1.9;
    color: #374151;
    padding-left: 2rem;
}
.testimonial-quote-large::before {
    content: '\201C';
    position: absolute;
    left: -0.2rem;
    top: -0.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--site-primary, #6366f1);
    opacity: 0.15;
    line-height: 1;
}
