blob: ec9f224439ec8ee8f505fa90ebc42c97f5c098ed [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
.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;
}