
            .profiles-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 20px;
                padding: 20px;
            }
            
            .profile-card {
                border: 1px solid #ddd;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            
            .profile-image img {
                width: 100%;
                height: auto;
                display: block;
            }
            
            .profile-content {
                padding: 15px;
            }
            
            .profile-content h3 {
                margin: 0 0 10px 0;
                color: #333;
            }
            
            .profile-excerpt {
                color: #666;
                margin-bottom: 15px;
            }
            
            .profile-link {
                display: inline-block;
                padding: 8px 16px;
                background-color: #0073aa;
                color: white;
                text-decoration: none;
                border-radius: 4px;
                transition: background-color 0.3s;
            }
            
            .profile-link:hover {
                background-color: #005177;
                color: white;
            }