/* Testimonials Styles */
.wt-testimonials-wrapper {
    display: grid;
    gap: 30px;
    padding: 20px 0;
}

.wt-testimonials-wrapper.wt-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wt-testimonials-wrapper.wt-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wt-testimonials-wrapper.wt-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.wt-testimonial-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    transition: transform 0.3s ease;
}

.wt-testimonial-item:hover {
    transform: translateY(-5px);
}

.wt-testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wt-testimonial-image {
    margin-bottom: 20px;
}

.wt-testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.wt-testimonial-content {
    text-align: center;
    width: 100%;
}

.wt-rating {
    margin-bottom: 15px;
    font-size: 20px;
    color: #ffc107;
}

.wt-star-filled {
    color: #ffc107;
}

.wt-star-empty {
    color: #e0e0e0;
}

.wt-testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.wt-testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wt-author-name {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.wt-author-position,
.wt-author-company {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.wt-author-website {
    margin-top: 10px;
    color: #0073aa;
    text-decoration: none;
}

.wt-author-website:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .wt-testimonials-wrapper.wt-grid-2,
    .wt-testimonials-wrapper.wt-grid-3,
    .wt-testimonials-wrapper.wt-grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .wt-testimonials-wrapper.wt-grid-3,
    .wt-testimonials-wrapper.wt-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
