/* FN SOLUTIONS — css/testimonials.css */
.testimonials {
    background: var(--bg-section-blue)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5)
}

.testi-card {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--border-light);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-slow)
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-brand)
}

.testi-card.featured {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-brand-lg)
}

.testi-stars {
    color: #f59e0b;
    font-size: .82rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-4)
}

.testi-card.featured .testi-stars {
    color: #fde68a
}

.testi-body {
    font-size: .86rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
    font-style: italic
}

.testi-card.featured .testi-body {
    color: rgba(255, 255, 255, .85)
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-light)
}

.testi-card.featured .testi-author {
    border-top-color: rgba(255, 255, 255, .2)
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0
}

.testi-card.featured .testi-av {
    background: rgba(255, 255, 255, .2);
    color: var(--white)
}

.testi-name {
    font-size: .83rem;
    font-weight: 700;
    color: var(--text-primary)
}

.testi-card.featured .testi-name {
    color: var(--white)
}

.testi-role {
    font-size: .7rem;
    color: var(--text-muted);
    margin-top: 2px
}

.testi-card.featured .testi-role {
    color: rgba(255, 255, 255, .6)
}

@media(max-width:900px) {
    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto
    }
}

@media(max-width:480px) {
    .testi-card {
        padding: var(--space-6) var(--space-5)
    }
}