/**
 * Testimonial Block Styles
 *
 * @package NeoFinances
 */

.neo-testimonial {
    background-color: var(--neo-white);
    border-radius: var(--neo-radius-2xl);
    padding: 2rem;
    box-shadow: var(--neo-shadow-lg);
    transition: box-shadow var(--neo-transition-normal);
}

.neo-testimonial:hover {
    box-shadow: var(--neo-shadow-xl);
}

/* Header */
.neo-testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Image */
.neo-testimonial-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.neo-testimonial-image-placeholder {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--neo-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.neo-testimonial-image-placeholder span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neo-white);
}

/* Info */
.neo-testimonial-info {
    flex: 1;
}

.neo-testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neo-primary-dark);
    margin: 0 0 0.25rem;
}

.neo-testimonial-title {
    font-size: 0.875rem;
    color: var(--neo-text-muted);
    margin: 0;
}

/* Quote icon */
.neo-testimonial-quote-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(188, 239, 245, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.neo-testimonial-quote-icon .neo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--neo-primary);
}

/* Review text */
.neo-testimonial-text {
    color: var(--neo-text-muted);
    line-height: 1.7;
    margin: 0;
}
