.patient-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.patient-reviews-title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    color: #1d1d1f;
}

.patient-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.patient-review-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.patient-review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.patient-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.patient-review-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-weight: 500;
    color: #86868b;
}

.patient-review-author {
    font-weight: 500;
    margin: 0 0 0.25rem;
    color: #1d1d1f;
}

.patient-review-date {
    font-size: 0.875rem;
    color: #86868b;
    margin: 0;
}

.patient-review-rating {
    margin-bottom: 0.75rem;
}

.star {
    color: #d2d2d7;
    font-size: 1rem;
}

.star.filled {
    color: #ff9500;
}

.patient-review-content {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #1d1d1f;
}

.patient-reviews-footer {
    text-align: center;
    margin-top: 2rem;
}

.patient-reviews-last-updated {
    font-size: 0.875rem;
    color: #86868b;
    margin-bottom: 1rem;
}

.patient-reviews-view-all {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1d1d1f;
    text-decoration: none;
    transition: all 0.2s ease;
}

.patient-reviews-view-all:hover {
    background-color: #f5f5f7;
}

.patient-reviews-empty {
    text-align: center;
    color: #86868b;
    font-size: 1rem;
    padding: 3rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .patient-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .patient-reviews-title {
        font-size: 1.75rem;
    }
}