112 lines
1.8 KiB
CSS
112 lines
1.8 KiB
CSS
.google-review-card {
|
|
background: #fff;
|
|
border-radius: 12px;
|
|
padding: 25px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
|
|
border: 1px solid #f0f0f0;
|
|
height: 100%;
|
|
transition: all 0.3s ease;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.google-review-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.google-avatar {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 50%;
|
|
background: #546e7a;
|
|
color: #fff;
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.google-avatar img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.google-user-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.google-name {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: #333;
|
|
margin: 0;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.google-stars {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.google-stars span {
|
|
font-size: 16px;
|
|
color: #ffc107;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.google-text {
|
|
font-size: 15px;
|
|
color: #555;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.google-review-images {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 15px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.google-review-photo {
|
|
width: 70px;
|
|
height: 70px;
|
|
border-radius: 6px;
|
|
object-fit: cover;
|
|
border: 1px solid #eee;
|
|
}
|
|
|
|
.read-more-btn {
|
|
background: transparent;
|
|
border: none;
|
|
color: #d32f2f;
|
|
padding: 15px 0 0 0;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
width: 100%;
|
|
display: block;
|
|
margin-top: auto;
|
|
}
|
|
|
|
.read-more-btn:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.equal-height {
|
|
min-height: 380px;
|
|
}
|
|
|
|
/* Home specific adjustments to maintain original layout density */
|
|
.google-review-card-home {
|
|
padding: 0;
|
|
} |