blob: e6423c725d65582a7875e154e043f29a05644443 [file] [log] [blame]
.testimonial-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
margin: 2rem 0;
}
.testimonial-card {
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-width: 300px;
width: 100%;
padding: 1rem;
text-align: center;
transition: transform 0.2s ease-in-out;
}
.testimonial-card:hover {
transform: scale(1.05);
}
.testimonial-photo img {
border-radius: 50%;
height: 80px;
width: 80px;
object-fit: cover;
margin-bottom: 1rem;
}
.testimonial-content p {
font-style: italic;
color: #555;
}
.testimonial-content h4 {
margin: 0.5rem 0 0;
font-size: 1.1rem;
font-weight: bold;
color: #555;
}
.testimonial-content span {
color: #999;
font-size: 0.9rem;
}