/* Google Review Card - 100% Reference Match */
.google-review-card {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    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;
}

.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;
}
