/* Google Review Card Styles */
.google-review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.google-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.google-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #D97706;
    /* brand-primary */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.google-info {
    flex-grow: 1;
}

.google-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.2;
}

.google-meta {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-stars {
    color: #fbbf24;
    /* amber-400 */
    font-size: 0.9rem;
    letter-spacing: -2px;
}

.google-g-icon {
    width: 20px;
    height: 20px;
}