/* Light UI Kit - Testimonials styling */
.light-ui-testimonials {
    padding: 60px 20px;
    background-color: #f9fafb; /* Light Gray Background */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.light-ui-title {
    text-align: center;
    font-size: 28px;
    color: #111827;
    margin-bottom: 40px;
    font-weight: 700;
}

.light-ui-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.light-ui-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.light-ui-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.light-ui-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.light-ui-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #e5e7eb;
}

.light-ui-meta {
    line-height: 1.4;
}

.light-ui-name {
    margin: 0;
    font-size: 16px;
    color: #1f2937;
    font-weight: 600;
}

.light-ui-role {
    font-size: 13px;
    color: #6b7280;
}

.light-ui-rating {
    margin-bottom: 12px;
    color: #f59e0b; /* Yellow star */
    font-size: 14px;
}

.light-ui-rating .star-empty {
    color: #e5e7eb;
}

.light-ui-quote {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    font-style: italic;
}