/* Testimonials Specific Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
}

.testimonial-info h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-date {
    color: #666;
    font-size: 14px;
}

.testimonial-responses {
    margin-bottom: 20px;
}

.response-item {
    margin-bottom: 12px;
    padding: 8px 0;
}

.response-label {
    font-size: 1rem;
    color: #222;
    margin-bottom: 4px;
}

.response-value {
    font-weight: bold;
    color: #000;
    font-size: 1rem;
}

.response-value.positive {
    color: #27ae60;
}

.response-value.neutral {
    color: #f39c12;
}

.response-value.negative {
    color: #e74c3c;
}

.testimonial-comments {
  padding: 10px;
  border-radius: 4px;
  font-style: italic;
  color: #222;
  font-size: 1rem;
}

.no-testimonials {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.no-testimonials h2 {
    color: #000;
    margin-bottom: 15px;
}

.no-testimonials p {
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
